<?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: 𝗠𝗘𝗥𝗖𝗬 Ⓜ️</title>
    <description>The latest articles on DEV Community by 𝗠𝗘𝗥𝗖𝗬 Ⓜ️ (@codewithmercy).</description>
    <link>https://dev.to/codewithmercy</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%2F574439%2F2f231902-7bc8-43f4-b34c-ee273f940c14.JPG</url>
      <title>DEV Community: 𝗠𝗘𝗥𝗖𝗬 Ⓜ️</title>
      <link>https://dev.to/codewithmercy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codewithmercy"/>
    <language>en</language>
    <item>
      <title>Backend development &amp; Nodejs </title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Tue, 27 Apr 2021 01:11:14 +0000</pubDate>
      <link>https://dev.to/codewithmercy/backend-development-nodejs-39c1</link>
      <guid>https://dev.to/codewithmercy/backend-development-nodejs-39c1</guid>
      <description>&lt;p&gt;I start the back-end development understanding that a back-end web developer is responsible for server-side web application logic and integration of the work front-end developers do. Back-end developers are usually writing the web services and APIs used by front-end developers and mobile application developers. I was introduced to Node js as &lt;/p&gt;

&lt;p&gt;🔹️ Node.js is an open-source server environment&lt;br&gt;
🔹️ Node.js is free&lt;br&gt;
🔹️ Node.js runs on various platforms (Windows, Linux, Unix, Mac OS, etc.)&lt;br&gt;
🔹️ Node.js uses JavaScript on the server&lt;/p&gt;

&lt;p&gt;What Node.js Do?&lt;/p&gt;

&lt;p&gt;🔹️ Node.js can generate the dynamic page content&lt;br&gt;
🔹️ Node.js can create, open, read, write, delete, and close files on the server&lt;br&gt;
🔹️ Node.js can collect form data&lt;br&gt;
🔹️ Node.js can add, delete, modify data in your database&lt;/p&gt;

&lt;p&gt;What a Node.js File is?&lt;/p&gt;

&lt;p&gt;🔹️ Node.js files contain tasks that will be executed on certain events&lt;br&gt;
🔹️ A typical event is someone trying to access a port on the server&lt;br&gt;
🔹️ Node.js files must be initiated on the server before having any effect&lt;br&gt;
🔹️ Node.js files have extension ".js"&lt;/p&gt;

&lt;p&gt;What is a Module in Node.js?&lt;/p&gt;

&lt;p&gt;🔹️ Modules are considered to be the same as JavaScript libraries. A set of functions you want to include in your application.&lt;/p&gt;

&lt;p&gt;Node.js as a File Server&lt;/p&gt;

&lt;p&gt;🔹️ The Node.js file system module allows you to work with the file system on your computer.&lt;/p&gt;

&lt;p&gt;To include the File System module, use the require() method:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    var fs = require('fs');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;A common use for the File System module:&lt;/p&gt;

&lt;p&gt;🔹️ Read files&lt;br&gt;
🔹️ Create files&lt;br&gt;
🔹️ Update files&lt;br&gt;
🔹️ Delete files&lt;br&gt;
🔹️ Rename files&lt;/p&gt;

&lt;p&gt;The Built-in URL Module&lt;/p&gt;

&lt;p&gt;The URL module splits up a web address into...&lt;br&gt;
readable parts. To include the URL module, use the require() method:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     var url = require('url');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;What is NPM?&lt;/p&gt;

&lt;p&gt;🔸 NPM is a package manager for Node.js packages, or modules if you like. I proceed By installing an NPM library and running it in my hyper terminal which I console log a random superheroes name and supervillain name.&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
    </item>
    <item>
      <title>My Loan Calculator</title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Wed, 24 Feb 2021 01:28:30 +0000</pubDate>
      <link>https://dev.to/codewithmercy/my-loan-calculator-5dh7</link>
      <guid>https://dev.to/codewithmercy/my-loan-calculator-5dh7</guid>
      <description>&lt;p&gt;This was the first time I actually a JavaScript project myself that's not from a course or anyone giving to me. I saw someone do it and I decide I want to try it as well. And yes, it was hard for me since I only have little knowledge of JavaScript for now and for me to be better I have to keep doing this as people told and get the logic right.&lt;/p&gt;

&lt;p&gt;Achieving this, I had to add and &lt;strong&gt;EVENT LISTENER&lt;/strong&gt; to make the button in the task calculate my total interest, payment and monthly payment onclick, which I also make use of the innerHTML to pass the result into the paragraph tag in my HTML document. And to let you know, I Google, use StackOverflow just to achieve this result, as you know......a programmer is not completed with those two.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>html</category>
      <category>css</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Coming Soon Page</title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Tue, 23 Feb 2021 00:15:25 +0000</pubDate>
      <link>https://dev.to/codewithmercy/coming-soon-page-1dm</link>
      <guid>https://dev.to/codewithmercy/coming-soon-page-1dm</guid>
      <description>&lt;p&gt;Its been a while since I commit project frequently as I used to every week before, so I decided I am starting that again from tonight till I achieved my goal which is to master JavaScript very well and be able to apply all I know into one to build something amazing. I choose to build a coming soon page using HTML, CSS and JavaScript which was amazing from the beginning to the end. I think I'll improve the design later in the future or soon, want to add some more features to the countdown and also want to make it launch the new portfolio website I'm working on when the countdown is over. Here is the link to the codepen below, please like and share to encourage me.&lt;br&gt;
&lt;iframe height="600" src="https://codepen.io/mercyharbo/embed/zYoEVxo?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>html</category>
      <category>css</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Tribute Web Page</title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Fri, 19 Feb 2021 22:32:41 +0000</pubDate>
      <link>https://dev.to/codewithmercy/tribute-web-page-5h7f</link>
      <guid>https://dev.to/codewithmercy/tribute-web-page-5h7f</guid>
      <description>&lt;p&gt;The is a tribute web page that says little about personal stories and the kind of person that died is in the about section and also 3 grid pictures of his, also footer that contains my slack username, an anchor tag with mailto:myEmail link, mt intern track and current level in the intern side hustle and my social link icons below that is also copyright.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/mercyharbo/embed/wvoqoRL?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>html</category>
      <category>codenewbie</category>
      <category>css</category>
    </item>
    <item>
      <title>JavaScript journey </title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Wed, 17 Feb 2021 01:16:00 +0000</pubDate>
      <link>https://dev.to/codewithmercy/javascript-journey-je9</link>
      <guid>https://dev.to/codewithmercy/javascript-journey-je9</guid>
      <description>&lt;p&gt;I've been learning JavaScript recently after a few years of quitting on my first trial which could have open the door of many success for me earlier than now but it's never too late to do it anyway. I've been making progress so far which I never expected because I hate maths and first thing I saw on my first trial of JavaScript was var x = 5 * 7; which scare me off because I never expected such for someone that just learn HTML &amp;amp; CSS and enjoyed it. &lt;/p&gt;

&lt;p&gt;Now I'd like to know how you all learn JavaScript and understand everything about it because I'm finding it hard to know how to use the basics of JavaScript that I've learned to build stuffs such as apps and on website. &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Loopstudio landing page desin </title>
      <dc:creator>𝗠𝗘𝗥𝗖𝗬 Ⓜ️</dc:creator>
      <pubDate>Sat, 06 Feb 2021 01:48:14 +0000</pubDate>
      <link>https://dev.to/codewithmercy/loopstudio-landing-page-desin-4gpl</link>
      <guid>https://dev.to/codewithmercy/loopstudio-landing-page-desin-4gpl</guid>
      <description>&lt;p&gt;The desktop view is completed and it was amazing all through even though I had some little challenges on the way, I still find a way to figure it out and I get help from one or two people. The responsive part might be the hard part though because I want it to fit on all devices.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
