I created a nodejs site, did the initial configuration and confirmed I could run the basic Hello World from node. Then uploaded my React app folder contents to public_nodejs, set the app name in package.json to public_nodejs, and when I run npm start from that folder I get:
public_nodejs@0.1.0 start
react-scripts start
sh: react-scripts: Permission denied
So I tried doing a build, uploaded the build folder to public_nodejs, added a homepage property to package.json, ran npm i -g serve, now when I run serve -s build, I get:
(home)/.npm-global/bin/serve: Permission denied
What am I missing?