How to create a react app without admin credentials in Windows?
I am a newbie to React and I work on in a corporation where they do not give you admin credentials to your working PC but you can call IT-support and get them to type a few commands in command terminal and install the software.
So they have installed node.js
and run a simple npm i -g create-react-app
under administrator privileges.
But when I run npx create-react-app my_app
without admin credentials, I fail after a long installation.
So is there anyway to download the basic react app to get started, or make IT-support write a few command lines or is it impossible to develop React without admin credentials?
reactjs
add a comment |
I am a newbie to React and I work on in a corporation where they do not give you admin credentials to your working PC but you can call IT-support and get them to type a few commands in command terminal and install the software.
So they have installed node.js
and run a simple npm i -g create-react-app
under administrator privileges.
But when I run npx create-react-app my_app
without admin credentials, I fail after a long installation.
So is there anyway to download the basic react app to get started, or make IT-support write a few command lines or is it impossible to develop React without admin credentials?
reactjs
1
Don't install create-react-app as a global package (-g
). Then you'll find it innode_modules/.bin/create-react-app
.
– Sergiu Paraschiv
Nov 12 at 12:42
2
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where everynpm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin
– Colin Young
Nov 12 at 13:08
add a comment |
I am a newbie to React and I work on in a corporation where they do not give you admin credentials to your working PC but you can call IT-support and get them to type a few commands in command terminal and install the software.
So they have installed node.js
and run a simple npm i -g create-react-app
under administrator privileges.
But when I run npx create-react-app my_app
without admin credentials, I fail after a long installation.
So is there anyway to download the basic react app to get started, or make IT-support write a few command lines or is it impossible to develop React without admin credentials?
reactjs
I am a newbie to React and I work on in a corporation where they do not give you admin credentials to your working PC but you can call IT-support and get them to type a few commands in command terminal and install the software.
So they have installed node.js
and run a simple npm i -g create-react-app
under administrator privileges.
But when I run npx create-react-app my_app
without admin credentials, I fail after a long installation.
So is there anyway to download the basic react app to get started, or make IT-support write a few command lines or is it impossible to develop React without admin credentials?
reactjs
reactjs
edited Nov 12 at 12:54
kit
1,1083616
1,1083616
asked Nov 12 at 12:40
Peter Mølgaard Pallesen
164111
164111
1
Don't install create-react-app as a global package (-g
). Then you'll find it innode_modules/.bin/create-react-app
.
– Sergiu Paraschiv
Nov 12 at 12:42
2
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where everynpm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin
– Colin Young
Nov 12 at 13:08
add a comment |
1
Don't install create-react-app as a global package (-g
). Then you'll find it innode_modules/.bin/create-react-app
.
– Sergiu Paraschiv
Nov 12 at 12:42
2
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where everynpm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin
– Colin Young
Nov 12 at 13:08
1
1
Don't install create-react-app as a global package (
-g
). Then you'll find it in node_modules/.bin/create-react-app
.– Sergiu Paraschiv
Nov 12 at 12:42
Don't install create-react-app as a global package (
-g
). Then you'll find it in node_modules/.bin/create-react-app
.– Sergiu Paraschiv
Nov 12 at 12:42
2
2
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where every
npm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin– Colin Young
Nov 12 at 13:08
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where every
npm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin– Colin Young
Nov 12 at 13:08
add a comment |
active
oldest
votes
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%2f53262416%2fhow-to-create-a-react-app-without-admin-credentials-in-windows%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53262416%2fhow-to-create-a-react-app-without-admin-credentials-in-windows%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
1
Don't install create-react-app as a global package (
-g
). Then you'll find it innode_modules/.bin/create-react-app
.– Sergiu Paraschiv
Nov 12 at 12:42
2
You'd better insist on giving the admin to you, or you will have to write tickets on helpdesk every time you need to install something like docker/npm packages or update env. variables. Cheers!
– Raman Haivaronski
Nov 12 at 12:48
Thanks Sergiu it worked. And for Roman you are right. I will say to them you said I should have Admin credientials.
– Peter Mølgaard Pallesen
Nov 12 at 12:53
Just call them give you the admin privilege...
– kit
Nov 12 at 12:54
I too work at a large corporation with locked-down machines, and we have limited admin privileges. You probably aren't going to get very far asking for full admin access. You are better to work with the IT/security team to figure out exactly what is failing and where so they can figure out the best approach. Yes, I get that it's frustrating. We went through a period where every
npm install
would fail after a long wait, but we've got through that and now things run smoothly without full admin– Colin Young
Nov 12 at 13:08