<?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>Shakti Tanwar &#187; NodeJs</title>
	<atom:link href="http://shaktitanwar.com/category/nodejs/feed/" rel="self" type="application/rss+xml" />
	<link>http://shaktitanwar.com</link>
	<description>Shakti Tanwar - “Dot Net Training”</description>
	<lastBuildDate>Tue, 26 Aug 2025 09:23:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.4</generator>
	<item>
		<title>How to Keep Node Updated</title>
		<link>http://shaktitanwar.com/keep-node-updated/</link>
		<comments>http://shaktitanwar.com/keep-node-updated/#comments</comments>
		<pubDate>Mon, 24 Apr 2017 03:36:08 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=527</guid>
		<description><![CDATA[To update installed node package 1.) Delete nodejs folder from C:\Program Files (x86)\nodejs or location where its installed 2.) Download latest installer from https://nodejs.org/en/download/ and reinstall To Update angular command line interface npm uninstall -g angular-cli npm cache clean npm install -g angular-cli@latest]]></description>
		<wfw:commentRss>http://shaktitanwar.com/keep-node-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.Js Part 5</title>
		<link>http://shaktitanwar.com/node-js-part-5/</link>
		<comments>http://shaktitanwar.com/node-js-part-5/#comments</comments>
		<pubDate>Fri, 15 May 2015 17:37:52 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=432</guid>
		<description><![CDATA[How to add modules in Visual Studio Let’s try to add a new module express which is used to create MVC application using Node.To add a new module, we have 2 options:Using 1.) Node.js command line tool: Navigate to project Root in command window. Run below command: Npm install express [&#8230;]]]></description>
		<wfw:commentRss>http://shaktitanwar.com/node-js-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.Js Part 4</title>
		<link>http://shaktitanwar.com/node-js-part-4/</link>
		<comments>http://shaktitanwar.com/node-js-part-4/#comments</comments>
		<pubDate>Fri, 15 May 2015 14:01:57 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=425</guid>
		<description><![CDATA[Understanding Node.Js Project Structure in Visual Studio &#160; Let’s create a new project in visual studio using Blank Node.js Console application template Node.js is modular i.e. you have lots of modules contributed by open source community which aid in faster development. Let’s try to understand the project structure: NPM: This [&#8230;]]]></description>
		<wfw:commentRss>http://shaktitanwar.com/node-js-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.js Part 3 Visual Studio Support</title>
		<link>http://shaktitanwar.com/node-js-part-3-visual-studio-support/</link>
		<comments>http://shaktitanwar.com/node-js-part-3-visual-studio-support/#comments</comments>
		<pubDate>Fri, 15 May 2015 13:29:03 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=422</guid>
		<description><![CDATA[Node.Js Support in Visual Studio &#160; Visual Studio supports Node.js development. You can download node.js tools for visual studio (NTVS) from below location &#160; https://nodejstools.codeplex.com/ NTVS supports Editing, Intellisense, Profiling, npm, TypeScript, Debugging locally and remotely (Windows/MacOS/Linux), as well Azure Web Sites and Cloud Service. Once installed you will find [&#8230;]]]></description>
		<wfw:commentRss>http://shaktitanwar.com/node-js-part-3-visual-studio-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.Js Part 2</title>
		<link>http://shaktitanwar.com/node-js-part-2/</link>
		<comments>http://shaktitanwar.com/node-js-part-2/#comments</comments>
		<pubDate>Fri, 15 May 2015 11:19:24 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=415</guid>
		<description><![CDATA[Installation Node.js can be installed from below link https://nodejs.org/ Creating a Simple Server in Node.js Steps:- 1.) Create a javascript file say HelloWorld.js with below content  var http = require(&#8216;http&#8217;); http.createServer(function (request, response) { response.writeHead(200, {&#8216;Content-Type': &#8216;text/plain&#8217;}); response.end(&#8216;Hello World\n&#8217;); }).listen(8888, &#8216;127.0.0.1&#8217;); &#160; 2.) To run the file open Node.js command [&#8230;]]]></description>
		<wfw:commentRss>http://shaktitanwar.com/node-js-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.Js Part 1</title>
		<link>http://shaktitanwar.com/node-js-part-1/</link>
		<comments>http://shaktitanwar.com/node-js-part-1/#comments</comments>
		<pubDate>Fri, 15 May 2015 11:10:35 +0000</pubDate>
		<dc:creator><![CDATA[Shakti Tanwar]]></dc:creator>
				<category><![CDATA[NodeJs]]></category>

		<guid isPermaLink="false">http://shaktitanwar.com/?p=413</guid>
		<description><![CDATA[Node.Js &#160; On popular demand from many of my student and fellow developers, I am starting this series on Node.js . Focus will be on developing Node.js applications using Visual studio and side by side explaining things about other open source frameworks that go hand in hand with Node e.g. [&#8230;]]]></description>
		<wfw:commentRss>http://shaktitanwar.com/node-js-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
