<?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: Mahesh Sunuwar</title>
    <description>The latest articles on DEV Community by Mahesh Sunuwar (@pmsuntuwarg).</description>
    <link>https://dev.to/pmsuntuwarg</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%2F150783%2F16164e91-c827-4b64-92e4-2d81175d77ed.jpeg</url>
      <title>DEV Community: Mahesh Sunuwar</title>
      <link>https://dev.to/pmsuntuwarg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pmsuntuwarg"/>
    <language>en</language>
    <item>
      <title>Let's Get Started With Angular and Angular CLI</title>
      <dc:creator>Mahesh Sunuwar</dc:creator>
      <pubDate>Sat, 07 Mar 2020 10:34:22 +0000</pubDate>
      <link>https://dev.to/pmsuntuwarg/let-s-get-started-with-angular-and-angular-cli-39oi</link>
      <guid>https://dev.to/pmsuntuwarg/let-s-get-started-with-angular-and-angular-cli-39oi</guid>
      <description>&lt;p&gt;Note: This tutorial is not for AngularJs but for Angular 2+. Here instead of saying Angular 2+ everytime, we will be refering Angular as Angular 2+.&lt;/p&gt;

&lt;p&gt;If you haven't yet tried out Angular, wants to know how to install it and build your first app with it then you are in the right place.Here, We will be discussing the process of installing it in your workspace. Lets get started.&lt;/p&gt;

&lt;h3&gt;
  
  
  Things to Install
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://nodejs.org/en/download/"&gt;Nodejs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://angular.io/cli"&gt;Angular Cli&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Go ahead and install nodejs on your desired machine. Click on the installer based on your platform and it will be downloaded.&lt;/p&gt;

&lt;p&gt;After installing node, go ahead and open cmd then type &lt;code&gt;npm -v&lt;/code&gt;(-v for version). You'll get something like this(you'll get version number based on your installation).&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5APLOvqt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/shb92hbmceqm7gmqu7us.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5APLOvqt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/shb92hbmceqm7gmqu7us.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
If not, try installing node again and try again the &lt;code&gt;npm -v&lt;/code&gt; command.&lt;/p&gt;

&lt;p&gt;Now go ahead and type &lt;code&gt;npm install -g @angular/cli&lt;/code&gt;.&lt;br&gt;
It will install angular cli on your machine globally(-g for global installation).&lt;/p&gt;

&lt;p&gt;At this stage, you are all setup for Angular app. &lt;br&gt;
Now go type &lt;code&gt;ng new getting-started-with-angular&lt;/code&gt;, here &lt;code&gt;getting-started-with-angular&lt;/code&gt; is your projects name.&lt;br&gt;
It will ask you for angular routing, type &lt;code&gt;y&lt;/code&gt; and then hit enter&lt;br&gt;
It will again ask you to choose stylesheet format, select one and hit enter.&lt;br&gt;
Now it will create intial files for your Angular apps.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TxJVHTrO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dhsq78eox9hxezbyxg9y.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TxJVHTrO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dhsq78eox9hxezbyxg9y.JPG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After it finishes just type &lt;code&gt;cd getting-started-with-angular&lt;/code&gt; then hit enter.&lt;br&gt;
Now type &lt;code&gt;ng serve -o&lt;/code&gt;.&lt;br&gt;
ng serve runs the server and serves your projects file to the localhost:4200, by default. &lt;code&gt;-o&lt;/code&gt; is used to open browser after it finishes compiling files.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gs4fx2bK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7vvjw6n69o359x8cl7vp.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gs4fx2bK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7vvjw6n69o359x8cl7vp.JPG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ng serve -o&lt;/code&gt; should automatically open your browser and you can see this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ye-qqFJu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gjhih2iwjihjms9yjkry.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ye-qqFJu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gjhih2iwjihjms9yjkry.JPG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Congratulations on setting up Angular and serving your first app Angular app.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is a first blog on Angular Series. We will discussing more about it in our upcoming blogs.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is my very first blog post here on dev.to. I am open for suggestions. I hope I will do better on my upcoming tutorials/blogs.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

</description>
      <category>angular</category>
      <category>tutorial</category>
      <category>javascript</category>
    </item>
    <item>
      <title>presentation on git and its workflow</title>
      <dc:creator>Mahesh Sunuwar</dc:creator>
      <pubDate>Mon, 08 Apr 2019 14:00:13 +0000</pubDate>
      <link>https://dev.to/pmsuntuwarg/presentation-on-git-and-its-workflow-2c85</link>
      <guid>https://dev.to/pmsuntuwarg/presentation-on-git-and-its-workflow-2c85</guid>
      <description>&lt;p&gt;I am going to give presentation on git and its workflow this Friday.&lt;br&gt;
I just want to give as much information as i can.&lt;br&gt;
so i would be very grateful if i get some help from here.&lt;/p&gt;

&lt;p&gt;What do you think what are the things i should not miss?&lt;br&gt;
What type of workflow is your organization following?&lt;br&gt;
Is there anything else i should consider?&lt;/p&gt;

</description>
      <category>git</category>
      <category>discuss</category>
      <category>gitworkflow</category>
    </item>
  </channel>
</rss>
