<?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>node.js &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/tag/node-js/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Mon, 28 Jun 2021 19:55:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to uninstall npm packages?</title>
		<link>https://www.techawaken.com/uninstall-npm-packages/</link>
				<comments>https://www.techawaken.com/uninstall-npm-packages/#respond</comments>
				<pubDate>Tue, 09 Mar 2021 19:49:00 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>

		<guid isPermaLink="false">https://www.techawaken.com/?p=867</guid>
				<description><![CDATA[<p>To uninstall a npm package we use the npm uninstall command.</p>

<pre>

npm uninstall [&#60;@scope&#62;/]&#60;package&#62;[@&#60;version&#62;]

</pre>


<p> </p>
<p>To uninstall a globally installed package we need to use the -g or --global option:</p>

<pre>

npm uninstall -g [&#60;@scope&#62;/]&#60;package&#62;[@&#60;version&#62;]

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/install-npm-package-locally-globally/" rel="bookmark" title="Should I install npm package locally or globally?">Should I install npm package locally or globally? </a></li>
<li><a href="https://www.techawaken.com/install-deb-packages-ubuntu/" rel="bookmark" title="How to install .deb packages in Ubuntu?">How to install .deb packages in Ubuntu? </a></li>
<li><a href="https://www.techawaken.com/understanding-installing-node-js-npm/" rel="bookmark" title="Understanding &#038; Installing Node.js and NPM">Understanding &#038; Installing Node.js and NPM </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/uninstall-npm-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to find the latest stable npm version and upgrade npm?</title>
		<link>https://www.techawaken.com/find-latest-stable-npm-version-upgrade-npm/</link>
				<comments>https://www.techawaken.com/find-latest-stable-npm-version-upgrade-npm/#respond</comments>
				<pubDate>Tue, 15 Jan 2019 10:18:08 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>

		<guid isPermaLink="false">https://www.techawaken.com/?p=866</guid>
				<description><![CDATA[<p>In order to find the npm latest stable version, you need to visit the <a href="https://docs.npmjs.com/">npm documentation</a> web page and check the footer.</p>
<p>Earlier it used to mention the version number in footer but now it provides a link to the GitHub hosted repository <a href="https://github.com/npm/cli/releases/latest">https://github.com/npm/cli/releases/latest</a>; so, you can directly check go to this link and check the latest stable npm version available.</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/install-npm-package-locally-globally/" rel="bookmark" title="Should I install npm package locally or globally?">Should I install npm package locally or globally? </a></li>
<li><a href="https://www.techawaken.com/understanding-installing-node-js-npm/" rel="bookmark" title="Understanding &#038; Installing Node.js and NPM">Understanding &#038; Installing Node.js and NPM </a></li>
<li><a href="https://www.techawaken.com/check-server-compatibily-with-magento/" rel="bookmark" title="Check server compatibily with Magento">Check server compatibily with Magento </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/find-latest-stable-npm-version-upgrade-npm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Should I install npm package locally or globally?</title>
		<link>https://www.techawaken.com/install-npm-package-locally-globally/</link>
				<comments>https://www.techawaken.com/install-npm-package-locally-globally/#respond</comments>
				<pubDate>Thu, 10 Jan 2019 01:41:59 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>

		<guid isPermaLink="false">https://www.techawaken.com/?p=856</guid>
				<description><![CDATA[If I am beginner with npm, then this question will definitely come to my mind. To get an answer to this, you should ask the following questions to yourself:
<ul>
 	<li>How will I use the installed npm package?</li>
 	<li>Will I use it as a dependency in my module or will I use it as a command line tool?</li>
</ul>
&#160;
<h3>Install locally</h3>
&#160;

If you are going to include the package (say "slick-carousel") using statement like "require" in node.js and then use it in your module.

<pre>

npm install &#60;package_name&#62;

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/install-deb-packages-ubuntu/" rel="bookmark" title="How to install .deb packages in Ubuntu?">How to install .deb packages in Ubuntu? </a></li>
<li><a href="https://www.techawaken.com/understanding-installing-node-js-npm/" rel="bookmark" title="Understanding &#038; Installing Node.js and NPM">Understanding &#038; Installing Node.js and NPM </a></li>
<li><a href="https://www.techawaken.com/enable-compilation-magento-command-line-tool/" rel="bookmark" title="How to enable compilation in Magento using the command line tool">How to enable compilation in Magento using the command line tool </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/install-npm-package-locally-globally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Understanding &#038; Installing Node.js and NPM</title>
		<link>https://www.techawaken.com/understanding-installing-node-js-npm/</link>
				<comments>https://www.techawaken.com/understanding-installing-node-js-npm/#respond</comments>
				<pubDate>Tue, 28 Aug 2018 18:22:58 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[nvm]]></category>

		<guid isPermaLink="false">https://www.techawaken.com/?p=837</guid>
				<description><![CDATA[<p>We have been using client side/front end JavaScript to build dynamic pages where we embed the JavaScript code in HTML file, react to events and make AJAX calls for fetching data from the server.</p>
<p>Node.js allows you to write server side and networking applications with JavaScript.</p>
<p>Node.js is an open-source, cross-platform run-time environment that executes JavaScript code server-side. It is build on built on Chrome's V8 JavaScript engine. It uses an asynchronous event-driven model and is designed for writing scalable internet applications, notably web servers.</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/installing-composer-dependency-manager-php-windows/" rel="bookmark" title="Installing &#8220;Composer&#8221; &#8211; Dependency Manager for PHP in Windows">Installing &#8220;Composer&#8221; &#8211; Dependency Manager for PHP in Windows </a></li>
<li><a href="https://www.techawaken.com/installing-magento-with-sample-database/" rel="bookmark" title="Installing Magento with sample database">Installing Magento with sample database </a></li>
<li><a href="https://www.techawaken.com/magento-system-requirements/" rel="bookmark" title="Magento System Requirements">Magento System Requirements </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/understanding-installing-node-js-npm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
