Reputation: 3732
I an running a react project locally. I want to now run from a remote server, is the node_modules directory necessary to have on the server?
Upvotes: 0
Views: 304
Reputation: 3737
If there are dependencies with particular node modules, of course, yes. Try to remove the folder and run your app. If there are errors, try to 'npm install' and run again. If it works, you need to include node modules folder.
Upvotes: 2