Answer the question
In order to leave comments, you need to log in
Do I need to link git and node folder?
I want to put my project on Github and support it in the future. The folder, thanks to node_modules, weighs 30 MB. Should I clone everything or is there some way to get rid of node_modules?
Answer the question
In order to leave comments, you need to log in
Package.json will come to your rescue
, which will list all third-party modules, like this
"dependencies": {
"express": "^4.14.0"
}
npm install
and all the modules themselves will be downloaded to the node_modules folder. Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question