dt1000
dt1000

Reputation: 3732

Is node_modules directory required on a remote server for React project?

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

Answers (1)

JFAP
JFAP

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

Related Questions