Attempting to deploy my app (Node, React, Socketio) to Heroku gives me “sh: 1: react-scripts: Permission denied”
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
add a comment |
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
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
add a comment |
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
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
node.js reactjs heroku
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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...
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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...
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
add a comment |
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...
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
add a comment |
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...
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...
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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