Attempting to deploy my app (Node, React, Socketio) to Heroku gives me “sh: 1: react-scripts: Permission denied”










0














So I am trying to make my first react app. I have it working just fine locally. The problem is that I cannot upload my project to Heroku.



This is my app setup:
my file arrangement. I built this starting with a create-react-app, wrapped that entire thing in a "client" folder, and created a normal node server arrangement outside. I haven't touched my react app's package.json" except to add a socketio dependency, other than that it is exactly what create-react-app spits out.



I get this error on console when attempting to upload:
"sh: 1: react-scripts: Permission denied"



I have gone through https://devcenter.heroku.com/articles/nodejs-support, but to no avail.



This is my "outside" package.json scripts and dependencies



"scripts": 
"client": "npm start --prefix client",
"server": "node server.js",
"start": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "cd client && npm run build"
,
"dependencies":
"concurrently": "^4.0.1",
"express": "^4.16.4"
"socket.io": "^2.1.1"



UPDATE:



I've not gotten my application to work yet HOWEVER I finally found something interesting.



This: https://github.com/mars/heroku-cra-node



Looks like a barebones application I can essentially my stuff to, and have it work on Heroku. I've not added my code yet, I'll report back.



UPDATE:



Yep, seems to get past this permission BS. Now I just have to deal with getting socket.io client to connect... -_-










share|improve this question























  • The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
    – SakoBu
    Nov 10 at 6:56















0














So I am trying to make my first react app. I have it working just fine locally. The problem is that I cannot upload my project to Heroku.



This is my app setup:
my file arrangement. I built this starting with a create-react-app, wrapped that entire thing in a "client" folder, and created a normal node server arrangement outside. I haven't touched my react app's package.json" except to add a socketio dependency, other than that it is exactly what create-react-app spits out.



I get this error on console when attempting to upload:
"sh: 1: react-scripts: Permission denied"



I have gone through https://devcenter.heroku.com/articles/nodejs-support, but to no avail.



This is my "outside" package.json scripts and dependencies



"scripts": 
"client": "npm start --prefix client",
"server": "node server.js",
"start": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "cd client && npm run build"
,
"dependencies":
"concurrently": "^4.0.1",
"express": "^4.16.4"
"socket.io": "^2.1.1"



UPDATE:



I've not gotten my application to work yet HOWEVER I finally found something interesting.



This: https://github.com/mars/heroku-cra-node



Looks like a barebones application I can essentially my stuff to, and have it work on Heroku. I've not added my code yet, I'll report back.



UPDATE:



Yep, seems to get past this permission BS. Now I just have to deal with getting socket.io client to connect... -_-










share|improve this question























  • The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
    – SakoBu
    Nov 10 at 6:56













0












0








0







So I am trying to make my first react app. I have it working just fine locally. The problem is that I cannot upload my project to Heroku.



This is my app setup:
my file arrangement. I built this starting with a create-react-app, wrapped that entire thing in a "client" folder, and created a normal node server arrangement outside. I haven't touched my react app's package.json" except to add a socketio dependency, other than that it is exactly what create-react-app spits out.



I get this error on console when attempting to upload:
"sh: 1: react-scripts: Permission denied"



I have gone through https://devcenter.heroku.com/articles/nodejs-support, but to no avail.



This is my "outside" package.json scripts and dependencies



"scripts": 
"client": "npm start --prefix client",
"server": "node server.js",
"start": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "cd client && npm run build"
,
"dependencies":
"concurrently": "^4.0.1",
"express": "^4.16.4"
"socket.io": "^2.1.1"



UPDATE:



I've not gotten my application to work yet HOWEVER I finally found something interesting.



This: https://github.com/mars/heroku-cra-node



Looks like a barebones application I can essentially my stuff to, and have it work on Heroku. I've not added my code yet, I'll report back.



UPDATE:



Yep, seems to get past this permission BS. Now I just have to deal with getting socket.io client to connect... -_-










share|improve this question















So I am trying to make my first react app. I have it working just fine locally. The problem is that I cannot upload my project to Heroku.



This is my app setup:
my file arrangement. I built this starting with a create-react-app, wrapped that entire thing in a "client" folder, and created a normal node server arrangement outside. I haven't touched my react app's package.json" except to add a socketio dependency, other than that it is exactly what create-react-app spits out.



I get this error on console when attempting to upload:
"sh: 1: react-scripts: Permission denied"



I have gone through https://devcenter.heroku.com/articles/nodejs-support, but to no avail.



This is my "outside" package.json scripts and dependencies



"scripts": 
"client": "npm start --prefix client",
"server": "node server.js",
"start": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "cd client && npm run build"
,
"dependencies":
"concurrently": "^4.0.1",
"express": "^4.16.4"
"socket.io": "^2.1.1"



UPDATE:



I've not gotten my application to work yet HOWEVER I finally found something interesting.



This: https://github.com/mars/heroku-cra-node



Looks like a barebones application I can essentially my stuff to, and have it work on Heroku. I've not added my code yet, I'll report back.



UPDATE:



Yep, seems to get past this permission BS. Now I just have to deal with getting socket.io client to connect... -_-







node.js reactjs heroku






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 1:21

























asked Nov 10 at 5:09









Jon Nieves

61




61











  • The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
    – SakoBu
    Nov 10 at 6:56
















  • The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
    – SakoBu
    Nov 10 at 6:56















The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
– SakoBu
Nov 10 at 6:56




The problem is when you push to heroku, it uses your start script... and that's not a legitimate start script for heroku... You can install nodemon as I suggested for development and then change your scripts like I've noted below... Let me know if it still doesn't work... At least you'll get closer...
– SakoBu
Nov 10 at 6:56












1 Answer
1






active

oldest

votes


















0














Change your script to this:



 "scripts": 
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "NPM_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
,


npm run dev will start your server and client in development mode...



You can also install nodemon to make your life easier...






share|improve this answer




















  • Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
    – Jon Nieves
    Nov 10 at 7:17










  • Are you getting the same error?
    – SakoBu
    Nov 10 at 7:48










  • Yes sir, same error; "sh: 1: react-scripts: Permission denied"
    – Jon Nieves
    Nov 10 at 18:16










  • Can you post your server.js?
    – SakoBu
    Nov 10 at 18:18










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236160%2fattempting-to-deploy-my-app-node-react-socketio-to-heroku-gives-me-sh-1-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Change your script to this:



 "scripts": 
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "NPM_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
,


npm run dev will start your server and client in development mode...



You can also install nodemon to make your life easier...






share|improve this answer




















  • Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
    – Jon Nieves
    Nov 10 at 7:17










  • Are you getting the same error?
    – SakoBu
    Nov 10 at 7:48










  • Yes sir, same error; "sh: 1: react-scripts: Permission denied"
    – Jon Nieves
    Nov 10 at 18:16










  • Can you post your server.js?
    – SakoBu
    Nov 10 at 18:18















0














Change your script to this:



 "scripts": 
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "NPM_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
,


npm run dev will start your server and client in development mode...



You can also install nodemon to make your life easier...






share|improve this answer




















  • Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
    – Jon Nieves
    Nov 10 at 7:17










  • Are you getting the same error?
    – SakoBu
    Nov 10 at 7:48










  • Yes sir, same error; "sh: 1: react-scripts: Permission denied"
    – Jon Nieves
    Nov 10 at 18:16










  • Can you post your server.js?
    – SakoBu
    Nov 10 at 18:18













0












0








0






Change your script to this:



 "scripts": 
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "NPM_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
,


npm run dev will start your server and client in development mode...



You can also install nodemon to make your life easier...






share|improve this answer












Change your script to this:



 "scripts": 
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently "npm run server" "npm run client"",
"heroku-postbuild": "NPM_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
,


npm run dev will start your server and client in development mode...



You can also install nodemon to make your life easier...







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 10 at 6:54









SakoBu

988317




988317











  • Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
    – Jon Nieves
    Nov 10 at 7:17










  • Are you getting the same error?
    – SakoBu
    Nov 10 at 7:48










  • Yes sir, same error; "sh: 1: react-scripts: Permission denied"
    – Jon Nieves
    Nov 10 at 18:16










  • Can you post your server.js?
    – SakoBu
    Nov 10 at 18:18
















  • Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
    – Jon Nieves
    Nov 10 at 7:17










  • Are you getting the same error?
    – SakoBu
    Nov 10 at 7:48










  • Yes sir, same error; "sh: 1: react-scripts: Permission denied"
    – Jon Nieves
    Nov 10 at 18:16










  • Can you post your server.js?
    – SakoBu
    Nov 10 at 18:18















Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
– Jon Nieves
Nov 10 at 7:17




Gave it a shot but it didn't work =( i.imgur.com/K8BIf6R.png
– Jon Nieves
Nov 10 at 7:17












Are you getting the same error?
– SakoBu
Nov 10 at 7:48




Are you getting the same error?
– SakoBu
Nov 10 at 7:48












Yes sir, same error; "sh: 1: react-scripts: Permission denied"
– Jon Nieves
Nov 10 at 18:16




Yes sir, same error; "sh: 1: react-scripts: Permission denied"
– Jon Nieves
Nov 10 at 18:16












Can you post your server.js?
– SakoBu
Nov 10 at 18:18




Can you post your server.js?
– SakoBu
Nov 10 at 18:18

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236160%2fattempting-to-deploy-my-app-node-react-socketio-to-heroku-gives-me-sh-1-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)