Installing node js on debian Announcing the arrival of Valued Associate #679: Cesar Manara ...
How does the particle を relate to the verb 行く in the structure「A を + B に行く」?
How can I make names more distinctive without making them longer?
Why am I getting the error "non-boolean type specified in a context where a condition is expected" for this request?
What does F' and F" mean?
How to align text above triangle figure
How to tell that you are a giant?
What is known about the Ubaid lizard-people figurines?
What would be the ideal power source for a cybernetic eye?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Can a non-EU citizen traveling with me come with me through the EU passport line?
Is the Standard Deduction better than Itemized when both are the same amount?
When do you get frequent flier miles - when you buy, or when you fly?
Why didn't this character "real die" when they blew their stack out in Altered Carbon?
Why are Kinder Surprise Eggs illegal in the USA?
Is it true that "carbohydrates are of no use for the basal metabolic need"?
Error "illegal generic type for instanceof" when using local classes
Dating a Former Employee
What is the meaning of the new sigil in Game of Thrones Season 8 intro?
How much time will it take to get my passport back if I am applying for multiple Schengen visa countries?
How to find all the available tools in mac terminal?
When were vectors invented?
What does the "x" in "x86" represent?
How to answer "Have you ever been terminated?"
Installing node js on debian
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)installing node on centos 6.0Can't validate mine, sudo nor root in Debian “Jessie” Gnome anymore?Bug or syntax change on Debian's “curl” 7.36? Mess when trying to save sequential files with brackets/hashDebian - Correctly compile libdrm and MesaInstalling nodejs on DebianScreen flickering after debian upgrade to sidHow to upstart Debian Chroot on Synology to run HomebridgeError running steam in Virtualbox debian guest: “libGL error: failed to load driver: swrast”Installing Microsoft ODBC driver to Debianapt-get throws 400 URI failure when trying to download docker-ce
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
js on debian and got it working but I want to understanding what the command that their website recommends is actually doing.
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Im pretty new to the linux world and am just wanting to know what each part of the commands are doing. Thanks
Also here is there page that shows the steps Im using
https://nodejs.org/en/download/package-manager/
debian node.js
add a comment |
js on debian and got it working but I want to understanding what the command that their website recommends is actually doing.
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Im pretty new to the linux world and am just wanting to know what each part of the commands are doing. Thanks
Also here is there page that shows the steps Im using
https://nodejs.org/en/download/package-manager/
debian node.js
add a comment |
js on debian and got it working but I want to understanding what the command that their website recommends is actually doing.
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Im pretty new to the linux world and am just wanting to know what each part of the commands are doing. Thanks
Also here is there page that shows the steps Im using
https://nodejs.org/en/download/package-manager/
debian node.js
js on debian and got it working but I want to understanding what the command that their website recommends is actually doing.
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
Im pretty new to the linux world and am just wanting to know what each part of the commands are doing. Thanks
Also here is there page that shows the steps Im using
https://nodejs.org/en/download/package-manager/
debian node.js
debian node.js
asked Feb 16 '16 at 21:25
Chad WatkinsChad Watkins
1082
1082
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
curl
is a tool for creating web requests. This command downloads the file located at the given URL and then executes it as sudo
. That downloaded script takes care of downloading and installing the nodesource repository.
Normally this is a very dangerous command to run, since the script could do pretty much anything to your machine. Its a good idea to either review the script in a web browser first or, just download the script and review it before running it manually.
add a comment |
You should really checkout NVM, which is a tool for installing and managing node versions.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1041743%2finstalling-node-js-on-debian%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
curl
is a tool for creating web requests. This command downloads the file located at the given URL and then executes it as sudo
. That downloaded script takes care of downloading and installing the nodesource repository.
Normally this is a very dangerous command to run, since the script could do pretty much anything to your machine. Its a good idea to either review the script in a web browser first or, just download the script and review it before running it manually.
add a comment |
curl
is a tool for creating web requests. This command downloads the file located at the given URL and then executes it as sudo
. That downloaded script takes care of downloading and installing the nodesource repository.
Normally this is a very dangerous command to run, since the script could do pretty much anything to your machine. Its a good idea to either review the script in a web browser first or, just download the script and review it before running it manually.
add a comment |
curl
is a tool for creating web requests. This command downloads the file located at the given URL and then executes it as sudo
. That downloaded script takes care of downloading and installing the nodesource repository.
Normally this is a very dangerous command to run, since the script could do pretty much anything to your machine. Its a good idea to either review the script in a web browser first or, just download the script and review it before running it manually.
curl
is a tool for creating web requests. This command downloads the file located at the given URL and then executes it as sudo
. That downloaded script takes care of downloading and installing the nodesource repository.
Normally this is a very dangerous command to run, since the script could do pretty much anything to your machine. Its a good idea to either review the script in a web browser first or, just download the script and review it before running it manually.
answered Feb 16 '16 at 21:31
heavydheavyd
51.2k12124156
51.2k12124156
add a comment |
add a comment |
You should really checkout NVM, which is a tool for installing and managing node versions.
New contributor
add a comment |
You should really checkout NVM, which is a tool for installing and managing node versions.
New contributor
add a comment |
You should really checkout NVM, which is a tool for installing and managing node versions.
New contributor
You should really checkout NVM, which is a tool for installing and managing node versions.
New contributor
New contributor
answered 18 hours ago
Geo SystemsGeo Systems
563
563
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1041743%2finstalling-node-js-on-debian%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