Skip to content

Commit d0404b7

Browse files
committed
update ids
1 parent 46e8c3c commit d0404b7

File tree

3 files changed

+132
-132
lines changed

3 files changed

+132
-132
lines changed

TUTORIAL.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The Node Package Manager (NPM) is a command-line tool used by developers to share and control modules (or packages) of JavaScript code written for use with Node.js.
44

5-
## L1 Intro
5+
## 1. Intro
66

77
> Introduction to the package.json
88
@@ -18,7 +18,7 @@ Most developers prefer to install packages local to each project to create a sep
1818
The `package.json` file is the center of any Node.js project or NPM package. It stores information about your project, similar to how the <head> section of an HTML document describes the content of a webpage. It consists of a single JSON object where information is stored in key-value pairs. There are only two required fields; "name" and "version", but it’s good practice to provide additional information about your project that could be useful to future users or maintainers.
1919
If you look at the file tree of your project, you will find the package.json file on the top level of the tree. This is the file that you will be improving in the next couple of challenges.
2020

21-
## L2 Author
21+
## 2. Author
2222

2323
> Package.json author
2424
@@ -28,12 +28,12 @@ One of the most common pieces of information in this file is the `author` field.
2828
"author": "Jane Doe",
2929
```
3030

31-
### L2S1
31+
### 2.1
3232

3333
Add your name as the `author` of the project in the package.json file.
3434
**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (") and be separated with a comma (,).
3535

36-
## L3 Description
36+
## 3. Description
3737

3838
> Package.json description
3939
@@ -48,13 +48,13 @@ Here's an example:
4848
"description": "A project that does something awesome",
4949
```
5050

51-
### L3S1
51+
### 3.1
5252

5353
Add a `description` to the package.json file of your project.
5454

5555
**Note:** Remember to use double-quotes for field-names (") and commas (,) to separate fields.
5656

57-
## L4 Keywords
57+
## 4. Keywords
5858

5959
> Package.json keywords
6060
@@ -68,13 +68,13 @@ Here's an example:
6868

6969
As you can see, this field is structured as an array of double-quoted strings.
7070

71-
### L4S1
71+
### 4.1
7272

7373
Add an array of suitable strings to the `keywords` field in the package.json file of your project.
7474

7575
One of the keywords should be "freecodecamp".
7676

77-
## L5 License
77+
## 5. License
7878

7979
> Package.json license
8080
@@ -86,11 +86,11 @@ Some common licenses for open source projects include MIT and BSD. License infor
8686
"license": "MIT",
8787
```
8888

89-
### L5S1
89+
### 5.1s
9090

9191
Fill the `license` field in the package.json file of your project as you find suitable.
9292

93-
## L6 Version
93+
## 6. Version
9494

9595
> Package.json version
9696
@@ -100,11 +100,11 @@ A `version` is one of the required fields of your package.json file. This field
100100
"version": "1.2.0",
101101
```
102102

103-
### L6S1
103+
### 6.1
104104

105105
Add a `version` to the package.json file of your project.
106106

107-
## L7 External Packages
107+
## 7. External Packages
108108

109109
> Installing dependencies from NPM
110110
@@ -129,13 +129,13 @@ npm install express
129129

130130
Installed packages are created in a `node_modules` folder in your project. Avoid editing or changing the node_modules folder or its contents.
131131

132-
### L7S1
132+
### 7.1
133133

134134
Install the "moment" package to the `dependencies` field of your package.json file by running the command line npm install.
135135

136136
**Note:** Moment is a handy library for working with time and dates.
137137

138-
## L8 Semantic Versioning
138+
## 8. Semantic Versioning
139139

140140
> Versioning packages
141141
@@ -160,11 +160,11 @@ Using the NPM cli, a specific version of a package can be installed by specifyin
160160
npm install express@4.17.0
161161
```
162162

163-
### L8S1
163+
### 8.1
164164

165165
In the dependencies section of your package.json file, change the `version` of moment to match MAJOR version 2, MINOR version 10 and PATCH version 2
166166

167-
## L9 Receive Patch Updates
167+
## 9. Receive Patch Updates
168168

169169
> Using `~` to recieve patches
170170
@@ -176,14 +176,14 @@ To allow an npm dependency to update to the latest PATCH version, you can prefix
176176
"package": "~1.3.8"
177177
```
178178

179-
### L9S1
179+
### 9.1
180180

181181
In the package.json file, your current rule for how npm may upgrade moment is to use a specific version (2.10.2). But now, you want to allow the latest 2.10.x version.
182182
Use the tilde (`~`) character to prefix the version of moment in your dependencies, and allow npm to update it to any new PATCH release.
183183

184184
**Note:** The version numbers themselves should not be changed.
185185

186-
## L10 Receive Minor Updates
186+
## 10. Receive Minor Updates
187187

188188
> Using `^` to receive minor updates
189189
@@ -197,13 +197,13 @@ Your current version of moment should be "~2.10.2" which allows npm to install t
197197

198198
This would allow updates to any 1.x.x version of the package.
199199

200-
### L10S1
200+
### 10.1
201201

202202
Use the caret (`^`) to prefix the version of moment in your dependencies and allow npm to update it to any new MINOR release.
203203

204204
**Note:** The version numbers themselves should not be changed.
205205

206-
## L11 Remove a Dependency
206+
## 11. Remove a Dependency
207207

208208
> Removing a dependency
209209
@@ -213,7 +213,7 @@ But what if you want to remove an external package that you no longer need? You
213213

214214
This same method applies to removing other fields in your package.json as well.
215215

216-
### L11S1
216+
### 11.1
217217

218218
Remove the moment package from your dependencies.
219219

coderoad.yaml

+22-22
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ config:
1111
directory: coderoad
1212
repo:
1313
uri: https://github.com/coderoad/fcc-learn-npm
14-
branch: v0.4.0
14+
branch: v0.4.1
1515
dependencies:
1616
- name: node
1717
version: '>=10'
1818
levels:
19-
- id: L1
20-
- id: L2
19+
- id: '1'
20+
- id: '2'
2121
steps:
22-
- id: L2S1
22+
- id: '2.1'
2323
setup:
2424
commands:
2525
- npm install
@@ -28,39 +28,39 @@ levels:
2828
solution:
2929
files:
3030
- package.json
31-
- id: L3
31+
- id: '3'
3232
steps:
33-
- id: L3S1
33+
- id: '3.1'
3434
setup:
3535
files:
3636
- package.json
3737
solution:
3838
files:
3939
- package.json
40-
- id: L4
40+
- id: '4'
4141
steps:
42-
- id: L4S1
42+
- id: '4.1'
4343
setup:
4444
files:
4545
- package.json
4646
solution:
4747
files:
4848
- package.json
49-
- id: L5
49+
- id: '5'
5050
steps:
51-
- id: L5S1
51+
- id: '5.1'
5252
setup:
5353
files:
5454
- package.json
55-
- id: L6
55+
- id: '6'
5656
steps:
57-
- id: L6S1
57+
- id: '6.1'
5858
setup:
5959
files:
6060
- package.json
61-
- id: L7
61+
- id: '7'
6262
steps:
63-
- id: L7S1
63+
- id: '7.1'
6464
setup:
6565
files:
6666
- package.json
@@ -72,9 +72,9 @@ levels:
7272
- package.json
7373
commands:
7474
- npm install
75-
- id: L8
75+
- id: '8'
7676
steps:
77-
- id: L8S1
77+
- id: '8.1'
7878
setup:
7979
files:
8080
- package.json
@@ -86,27 +86,27 @@ levels:
8686
- package.json
8787
commands:
8888
- npm install
89-
- id: L9
89+
- id: '9'
9090
steps:
91-
- id: L9S1
91+
- id: '9.1'
9292
setup:
9393
files:
9494
- package.json
9595
solution:
9696
files:
9797
- package.json
98-
- id: L10
98+
- id: '10'
9999
steps:
100-
- id: L10S1
100+
- id: '10.1'
101101
setup:
102102
files:
103103
- package.json
104104
solution:
105105
files:
106106
- package.json
107-
- id: L11
107+
- id: '11'
108108
steps:
109-
- id: L11S1
109+
- id: '11.1'
110110
setup:
111111
files:
112112
- package.json

0 commit comments

Comments
 (0)