File tree Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -31,36 +31,28 @@ Backend development involves building the server-side logic of web applications.
31311 . ** Install Node.js and npm** : Download and install Node.js, which includes npm (Node Package Manager) [ 2] .
3232
3333```
34- node -v
35- npm -v
34+ node -v
35+ npm -v
3636```
3737
383802 . ** Create a Project Folder** :
3939
4040
4141
42- ```
43-
42+ ``` powershell
4443mkdir my-node-project
4544cd my-node-project
46-
4745```
4846
49473 . ** Initialize Your Project** :
5048
51- `` `
49+ ` npm init `
5250
53- npm init
54- ```
55-
56- This creates a `package.json` file to manage dependencies [2].
51+ This creates a ` package.json ` file to manage dependencies [ 2] .
5752
58534 . ** Install Express.js** :
5954
60- ```
61-
62- npm install express
63- ```
55+ ` npm install express `
6456
6557A basic folder structure includes:
6658
You can’t perform that action at this time.
0 commit comments