Looks like all your node modules have been uploaded into your repo
I believe that as long as package.json is uploaded onto your repo, then running npm install should automatically install all the node modules needed (rather than needing to upload the node modules onto your repo).
I would suggest having a .gitignore file that lists the names of the files and folders that doesn't need to be uploaded onto the remote repo (for example here )
Looks like all your node modules have been uploaded into your repo
I believe that as long as
package.jsonis uploaded onto your repo, then runningnpm installshould automatically install all the node modules needed (rather than needing to upload the node modules onto your repo).I would suggest having a
.gitignorefile that lists the names of the files and folders that doesn't need to be uploaded onto the remote repo (for example here )