<?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>Learn node Js &#8211; MaXEster Technologies  | Technical Blog</title>
	<atom:link href="https://www.maxester.com/blog/tag/learn-node-js/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.maxester.com/blog</link>
	<description>Tutorials, Examples and Implementation code for Developers Help</description>
	<lastBuildDate>Mon, 17 Feb 2025 09:17:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.22</generator>
	<item>
		<title>What is Node Js</title>
		<link>https://www.maxester.com/blog/2023/01/20/what-is-node-js/</link>
		<comments>https://www.maxester.com/blog/2023/01/20/what-is-node-js/#respond</comments>
		<pubDate>Fri, 20 Jan 2023 08:34:45 +0000</pubDate>
		<dc:creator><![CDATA[Maxester]]></dc:creator>
				<category><![CDATA[Node Js]]></category>
		<category><![CDATA[Learn node Js]]></category>
		<category><![CDATA[Node JS]]></category>
		<category><![CDATA[What is Node Js]]></category>

		<guid isPermaLink="false">https://www.maxester.com/blog/?p=1103</guid>
		<description><![CDATA[<p>Node.js is a JavaScript-based platform built on Google Chrome&#8217;s JavaScript V8 Engine. Node.js allows us to run JavaScript on the server. Create a file name app.js and paste below code like below screenshot After this run below commandnode app screenshot&#8230;</p>
<p><a href="https://www.maxester.com/blog/2023/01/20/what-is-node-js/" class="btn-more">Read More<span class="arrow-more">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2023/01/20/what-is-node-js/">What is Node Js</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[
<p>Node.js
is a JavaScript-based platform built on Google Chrome&#8217;s JavaScript V8 Engine.
Node.js allows us to run JavaScript on the server. </p>



<p>Create a file name app.js and paste below code like below screenshot</p>



<pre class="wp-block-code"><code>var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello Maxester!');
}).listen(8000);</code></pre>



<figure class="wp-block-image"><img src="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester1-1024x443.png" alt="" class="wp-image-1104" srcset="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester1-1024x443.png 1024w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester1-300x130.png 300w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester1-768x332.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After this run below command<br>node app<br><br>screenshot below </p>



<figure class="wp-block-image"><img src="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester2-1024x483.png" alt="" class="wp-image-1105" srcset="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester2-1024x483.png 1024w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester2-300x141.png 300w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester2-768x362.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After run above command open you browser and run the below URL<br><br>http://localhost:8000/<br><br>Output come like this </p>



<figure class="wp-block-image"><img src="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester3-1-1024x472.png" alt="" class="wp-image-1107" srcset="https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester3-1-1024x472.png 1024w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester3-1-300x138.png 300w, https://www.maxester.com/blog/wp-content/uploads/2023/01/maxester3-1-768x354.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>If  this comes then your node js sample code working fine on your system.<br>If you still face issue please cross check with the installation of Node Js on your system.</p>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2023/01/20/what-is-node-js/">What is Node Js</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.maxester.com/blog/2023/01/20/what-is-node-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
