<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: code-withAshish</title>
    <description>The latest articles on DEV Community by code-withAshish (@codewithashish).</description>
    <link>https://dev.to/codewithashish</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F581399%2F08624bbd-d299-42ad-98fd-711c72ddec88.png</url>
      <title>DEV Community: code-withAshish</title>
      <link>https://dev.to/codewithashish</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codewithashish"/>
    <language>en</language>
    <item>
      <title>How to setup gcc on your PC (For Windows)</title>
      <dc:creator>code-withAshish</dc:creator>
      <pubDate>Tue, 28 Dec 2021 03:40:47 +0000</pubDate>
      <link>https://dev.to/codewithashish/how-to-setup-gcc-on-your-pc-for-windows-3d97</link>
      <guid>https://dev.to/codewithashish/how-to-setup-gcc-on-your-pc-for-windows-3d97</guid>
      <description>&lt;p&gt;Hello there, in this article we will be discussing about setting up our system for c/c++ development by using tools like VS code, gcc compiler etc…&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Downloading required applications
&lt;/h3&gt;

&lt;p&gt;We will start by first downloading the files that we need from the internet so make sure you are connected to the internet and then click on the following links:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/installer/mingw-w64-install.exe/download" rel="noopener noreferrer"&gt;Mingw w64 compiler&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it now download both these files and install it simply by using their wizards/installers and it will be very easy too.&lt;/p&gt;

&lt;p&gt;After you have succesfully installed both of the applications move to Step 2.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Setting up your environment variables
&lt;/h3&gt;

&lt;p&gt;For setting up the environment variable go to &lt;/p&gt;

&lt;h4&gt;
  
  
  1. Search "Advanced settings" in search bar
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjelm5heihps1bd7i8l9z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjelm5heihps1bd7i8l9z.png" alt="Advanced Settings" width="412" height="468"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Open the “environment variables” window, click on the PATH variable and click on “Edit”
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgf3jgw26hx1du7awxfwu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgf3jgw26hx1du7awxfwu.png" alt="Opening env variables" width="618" height="585"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Click on the “New” button and add the 2 following directories to your PATH
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;h6&gt;
  
  
  &lt;em&gt;If you have not changed anything manually then add this path here&lt;/em&gt;
&lt;/h6&gt;


&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight batchfile"&gt;&lt;code&gt;&lt;span class="kd"&gt;C&lt;/span&gt;:\MinGW\bin
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa6ak9uulotgwpq3wfx7t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa6ak9uulotgwpq3wfx7t.png" alt="Adding PATH" width="527" height="501"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We are all done setting up, and if you followed it correctly move on to STEP 3 to confirm.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Checking the installation of gcc on our system
&lt;/h3&gt;

&lt;p&gt;Fire up a terminal by typing &lt;em&gt;"cmd"&lt;/em&gt; in your search bar and a window terminal should open and now just type&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight batchfile"&gt;&lt;code&gt;&lt;span class="kd"&gt;gcc&lt;/span&gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and if installation is correct, you should get something like this on your terminal&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight batchfile"&gt;&lt;code&gt;&lt;span class="kd"&gt;gcc&lt;/span&gt;
&lt;span class="kd"&gt;gcc&lt;/span&gt;: &lt;span class="kd"&gt;error&lt;/span&gt;: &lt;span class="kd"&gt;unrecognized&lt;/span&gt; &lt;span class="kd"&gt;command&lt;/span&gt; &lt;span class="kd"&gt;line&lt;/span&gt; &lt;span class="kd"&gt;option&lt;/span&gt; ‘&lt;span class="na"&gt;--v&lt;/span&gt;’&lt;span class="o"&gt;;&lt;/span&gt; &lt;span class="kd"&gt;did&lt;/span&gt; &lt;span class="kd"&gt;you&lt;/span&gt; &lt;span class="kd"&gt;mean&lt;/span&gt; ‘&lt;span class="na"&gt;--d&lt;/span&gt;’&lt;span class="o"&gt;?&lt;/span&gt;
&lt;span class="kd"&gt;gcc&lt;/span&gt;: &lt;span class="kd"&gt;fatal&lt;/span&gt; &lt;span class="kd"&gt;error&lt;/span&gt;: &lt;span class="kd"&gt;no&lt;/span&gt; &lt;span class="kd"&gt;input&lt;/span&gt; &lt;span class="kd"&gt;files&lt;/span&gt;
&lt;span class="kd"&gt;compilation&lt;/span&gt; &lt;span class="kd"&gt;terminated&lt;/span&gt;.


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;with this we have succesfully set up our gcc compiler on our system and we are ready to tun C/C++ program on our PC.&lt;/p&gt;

&lt;p&gt;If you face any problems following this article, feel free to ask me in the comments.&lt;/p&gt;

&lt;p&gt;Thank you for Reading ☺️☺️☺️&lt;/p&gt;

</description>
      <category>cpp</category>
      <category>c</category>
    </item>
    <item>
      <title>Making your first express js server (with explanation)</title>
      <dc:creator>code-withAshish</dc:creator>
      <pubDate>Wed, 14 Apr 2021 02:10:51 +0000</pubDate>
      <link>https://dev.to/codewithashish/making-your-first-express-js-server-with-explanation-iil</link>
      <guid>https://dev.to/codewithashish/making-your-first-express-js-server-with-explanation-iil</guid>
      <description>&lt;p&gt;&lt;a href="https://expressjs.com/" rel="noopener noreferrer"&gt;express js&lt;/a&gt; is a very popular framework built on node js itself and it provides an array of feature and is powerful to the extent that many major tech companies use it in their productions too so with all that in mind let's begin our first step in this express js series !!!&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 1
&lt;/h1&gt;

&lt;h6&gt;
  
  
  Setting up Editor
&lt;/h6&gt;

&lt;p&gt;First of all we will open any code editor, personally i use &lt;a href="https://code.visualstudio.com/download" rel="noopener noreferrer"&gt;Vs Code&lt;/a&gt; you may use any available like  &lt;a href="https://atom.io/" rel="noopener noreferrer"&gt;Atom&lt;/a&gt;  &lt;a href="https://www.sublimetext.com/" rel="noopener noreferrer"&gt;Sublime Text&lt;/a&gt; etc...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6ltra5lnlb8aqvsh86jx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6ltra5lnlb8aqvsh86jx.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  Step 2
&lt;/h1&gt;

&lt;h6&gt;
  
  
  Installing required packages using npm
&lt;/h6&gt;

&lt;p&gt;I am assuming that you have downloaded and installed node js if not just click &lt;a href="https://nodejs.org/en/" rel="noopener noreferrer"&gt;here&lt;/a&gt; and download it and set it up (it's very easy) then open up your terminal in the same directory you are working in and do the following&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;npm&lt;/span&gt; &lt;span class="nx"&gt;init&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;npm comes with node js so don't worry, you don't have to install it seperately&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;and after it you should see a file called &lt;strong&gt;package.json&lt;/strong&gt; created by it which looks like this&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdxzlro4j72xsde0tkecu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdxzlro4j72xsde0tkecu.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and after getting this done we again open our terminal and then install express js using npm by using following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;npm&lt;/span&gt; &lt;span class="nx"&gt;install&lt;/span&gt; &lt;span class="nx"&gt;express&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;It should look like this if succesfully done and if any problem occurs try running it as sudo or for windows as an administrator and make sure you have an internet connection to download the package&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2276knpj84nhyprc6ze0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2276knpj84nhyprc6ze0.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  Step 3
&lt;/h1&gt;

&lt;h6&gt;
  
  
  Writing the script for express js
&lt;/h6&gt;

&lt;p&gt;Now simply make a file with .js extension (because we are working with javascript obviously) with any name , I am naming it server.js &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhkbtma6eci781ow6rw6f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhkbtma6eci781ow6rw6f.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now copy this code in your file i will be explaining it below so don't worry :)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;express&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;express&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;app&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;express&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;/&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;req&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Hello world&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;

&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;listen&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;3000&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Server is Running on Port 3000&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h6&gt;
  
  
  Explanation
&lt;/h6&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In the first line &lt;code&gt;const express = require("express")&lt;/code&gt; we have included the package in our file it is similar to &lt;code&gt;import&lt;/code&gt; in python if you are from python background.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then we have initialized a variable called &lt;strong&gt;app&lt;/strong&gt; in which we have stored all the functions of express &lt;code&gt;const app = express()&lt;/code&gt; and now we will call app instead of writing express everytime just for ease you may use any other name for it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now we have used a function get which uses HTTPS GET method and a callback function which handles request and gives responses&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;/&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;req&lt;/span&gt; &lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Hello world&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;"/"&lt;/code&gt; this means we are at home page of our webpage and if any get request is there we will send a response by using &lt;code&gt;res.send()&lt;/code&gt; i have passed hello world in it which will show a html page there, we can also pass whole html files also( in detail in my next post).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In the last line we have used the function &lt;code&gt;app.listen()&lt;/code&gt;
which listens for a specific port that we pass there and a callback functions which logs that on which port server is running in our case it's Port 3000 ( you may use any available port on your machine).&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Step 4
&lt;/h1&gt;

&lt;h6&gt;
  
  
  Finalizing our script and running it
&lt;/h6&gt;

&lt;p&gt;After all this done just run our code by using either code runner extension of vs code or just go to terminal and type&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;node server.js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and you should see somethig like this in your terminal if everything is fine &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh3ln5lhwkfjgiuob04q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh3ln5lhwkfjgiuob04q.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
and now to see our work just open any browser preferably Chrome &lt;a href="https://www.google.com/chrome/?brand=JJTC&amp;amp;gclid=Cj0KCQjwgtWDBhDZARIsADEKwgMDFUqVlPZi2_PML8PG9pZIX7I1fYt58o-F0YWEek867T3tUsRG6YsaAq9IEALw_wcB&amp;amp;gclsrc=aw.ds" rel="noopener noreferrer"&gt;latest&lt;/a&gt; version and in the search bar just write &lt;code&gt;localhost:3000&lt;/code&gt; you will write the same port number as in your code ( as i used port 3000) &lt;br&gt;
and you should see &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj38hf2hu6wjpyy2l9eya.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj38hf2hu6wjpyy2l9eya.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Congratulations you just created your first web server in express js!!!!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's it for now my lovely people stay tuned and happy coding ;)&lt;/p&gt;

&lt;p&gt;Feel free to message me if you find any errors in my article there is always scope of error and correction too 😊.&lt;/p&gt;




</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>codequality</category>
      <category>server</category>
    </item>
  </channel>
</rss>
