<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Ask! &#187; NodeJS</title>
	<atom:link href="http://www.linuxask.com/topics/programming/nodejs/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>How to install a NodeJS module using npm globally</title>
		<link>http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally</link>
		<comments>http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally#comments</comments>
		<pubDate>Thu, 22 Sep 2011 14:50:59 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[NodeJS]]></category>
		<category><![CDATA[nodejs]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3509</guid>
		<description><![CDATA[How to install a NodeJS module using npm globally Answer: By default, node modules installed using simple node install will be installed under the folder ./node_modules. In order to install the modules globally, try # sudo npm install express -g The above command install the express module as global module.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-nodejs-in-linux" rel="bookmark" title="Install NodeJS in Linux">Install NodeJS in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-using-cpan" rel="bookmark" title="Install Perl module using CPAN">Install Perl module using CPAN </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-from-cpan-even-tests-failed" rel="bookmark" title="Install Perl module from CPAN even tests failed">Install Perl module from CPAN even tests failed </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to install a NodeJS module using npm globally</p>
<p><strong>Answer:</strong></p>
<p>By default, node modules installed using simple <b>node install</b> will be installed under the folder <strong>./node_modules</strong>. In order to install the modules globally, try </p>
<pre><code># sudo npm install express -g</code></pre>
<p>The above command install the <a href="http://expressjs.com/">express </a>module as global module.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-nodejs-in-linux" rel="bookmark" title="Install NodeJS in Linux">Install NodeJS in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-using-cpan" rel="bookmark" title="Install Perl module using CPAN">Install Perl module using CPAN </a></li>
<li><a href="http://www.linuxask.com/questions/install-perl-module-from-cpan-even-tests-failed" rel="bookmark" title="Install Perl module from CPAN even tests failed">Install Perl module from CPAN even tests failed </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install the node package manager (npm)</title>
		<link>http://www.linuxask.com/questions/install-the-node-package-manager-npm</link>
		<comments>http://www.linuxask.com/questions/install-the-node-package-manager-npm#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:48:38 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[NodeJS]]></category>
		<category><![CDATA[nodejs]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3507</guid>
		<description><![CDATA[Install the node package manager (npm) Answer: npm is a package manager for node.js, to install it under Linux, just a single command: # curl http://npmjs.org/install.sh &#124; sudo sh<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-nodejs-in-linux" rel="bookmark" title="Install NodeJS in Linux">Install NodeJS in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally" rel="bookmark" title="How to install a NodeJS module using npm globally">How to install a NodeJS module using npm globally </a></li>
<li><a href="http://www.linuxask.com/questions/displays-information-about-package-in-ubuntu" rel="bookmark" title="Displays information about package in Ubuntu">Displays information about package in Ubuntu </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Install the node package manager (npm)</p>
<p><strong>Answer:</strong></p>
<p><strong>npm </strong>is a package manager for <strong>node.js</strong>, to install it under Linux, just a single command:</p>
<p><code># curl http://npmjs.org/install.sh | sudo sh</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/install-nodejs-in-linux" rel="bookmark" title="Install NodeJS in Linux">Install NodeJS in Linux </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally" rel="bookmark" title="How to install a NodeJS module using npm globally">How to install a NodeJS module using npm globally </a></li>
<li><a href="http://www.linuxask.com/questions/displays-information-about-package-in-ubuntu" rel="bookmark" title="Displays information about package in Ubuntu">Displays information about package in Ubuntu </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-the-node-package-manager-npm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install NodeJS in Linux</title>
		<link>http://www.linuxask.com/questions/install-nodejs-in-linux</link>
		<comments>http://www.linuxask.com/questions/install-nodejs-in-linux#comments</comments>
		<pubDate>Wed, 14 Sep 2011 15:16:01 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[NodeJS]]></category>
		<category><![CDATA[nodejs]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3515</guid>
		<description><![CDATA[Install NodeJS in Linux Answer: In order to install NodeJS in Linux, the recommended way is compile from source and install it. # wget http://nodejs.org/dist/node-v0.4.11.tar.gz # tar zxf node-v0.4.11.tar.gz # cd node-v0.4.11 # ./configure # sudo make &#038;&#038; make install Now you can type node to enter the node's REPL<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally" rel="bookmark" title="How to install a NodeJS module using npm globally">How to install a NodeJS module using npm globally </a></li>
<li><a href="http://www.linuxask.com/questions/install-the-node-package-manager-npm" rel="bookmark" title="Install the node package manager (npm)">Install the node package manager (npm) </a></li>
<li><a href="http://www.linuxask.com/questions/install-gd-library-for-php-on-linux" rel="bookmark" title="Install GD Library for PHP on Linux">Install GD Library for PHP on Linux </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Install NodeJS in Linux</p>
<p><strong>Answer:</strong></p>
<p>In order to install <strong>NodeJS </strong>in Linux, the recommended way is compile from source and install it.</p>
<pre><code># wget http://nodejs.org/dist/node-v0.4.11.tar.gz
# tar zxf node-v0.4.11.tar.gz
# cd node-v0.4.11
# ./configure
# sudo make &#038;& make install</code></pre>
<p>Now you can type <strong>node </strong>to enter the node's <a href="http://nodejs.org/docs/latest/api/repl.html">REPL </a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-install-a-nodejs-module-using-npm-globally" rel="bookmark" title="How to install a NodeJS module using npm globally">How to install a NodeJS module using npm globally </a></li>
<li><a href="http://www.linuxask.com/questions/install-the-node-package-manager-npm" rel="bookmark" title="Install the node package manager (npm)">Install the node package manager (npm) </a></li>
<li><a href="http://www.linuxask.com/questions/install-gd-library-for-php-on-linux" rel="bookmark" title="Install GD Library for PHP on Linux">Install GD Library for PHP on Linux </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-nodejs-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
