-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTE.txt
More file actions
16 lines (14 loc) · 684 Bytes
/
Copy pathNOTE.txt
File metadata and controls
16 lines (14 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
1
-----------
"start":"node app.js"
//npm start
"start-server":"node app.js"
//npm run start-server
2
--------
npm install
---------
* if you rerun just npm install, without defining an extra package name because this command standalone
will simply go through all your packages mentioned in package.json and install them and it would automatically pick a later version if available
* you can always delete that node
modules folder if you need to free up space.Now you can't use that package but you can then rerun npm install if you start working on that project again and it will re-install this package and all its pure dependencies and therefore recreate the node modules folder.