<?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: Kehinde Abe</title>
    <description>The latest articles on DEV Community by Kehinde Abe (@thecodezs).</description>
    <link>https://dev.to/thecodezs</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%2F137500%2F6335d9db-ecb0-4fa4-b44a-42c2ad03e380.jpg</url>
      <title>DEV Community: Kehinde Abe</title>
      <link>https://dev.to/thecodezs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thecodezs"/>
    <language>en</language>
    <item>
      <title>How To Upgrade NVM, NPM, Node, and NPX</title>
      <dc:creator>Kehinde Abe</dc:creator>
      <pubDate>Tue, 23 Jun 2020 18:13:38 +0000</pubDate>
      <link>https://dev.to/thecodezs/how-to-upgrade-nvm-npm-node-and-npx-3g1k</link>
      <guid>https://dev.to/thecodezs/how-to-upgrade-nvm-npm-node-and-npx-3g1k</guid>
      <description>&lt;p&gt;I was working on a project and almost all of my Node packages were outdated, I searched for commands and options on keeping versions of core components consistent. I couldn't get all in one article so I wrote this about NVM, NPM, Node.js, and NPX.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NVM.&lt;/strong&gt;&lt;br&gt;
I think the most recent version of NVM is v0.35.3 and to install or update NVM use this command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NPM.&lt;/strong&gt;&lt;br&gt;
To upgrade NPM to the latest version use following command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install -g npm@latest&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Node.&lt;/strong&gt;&lt;br&gt;
Once you have nvm installed you can use the following command to get the latest stable version of Node.js&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nvm install stable&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NPX.&lt;/strong&gt;&lt;br&gt;
Since NPX is also node package we can use NPM to install or update it:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install -g npx&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Thank you for Reading!&lt;/p&gt;

</description>
      <category>node</category>
      <category>frontend</category>
      <category>backend</category>
    </item>
    <item>
      <title>Adding a cover image to your dev.to articles</title>
      <dc:creator>Kehinde Abe</dc:creator>
      <pubDate>Thu, 14 May 2020 22:40:27 +0000</pubDate>
      <link>https://dev.to/thecodezs/adding-a-cover-image-for-your-dev-to-articles-20md</link>
      <guid>https://dev.to/thecodezs/adding-a-cover-image-for-your-dev-to-articles-20md</guid>
      <description>&lt;p&gt;&lt;em&gt;Photo by Austin Distel on Unsplash&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I ran into some cover image issues when I started writing on dev.to not until I came across an article about how to add cover picture/image to your article so that prompt me to write this article to help whoever that might need it. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: adding a nice cover image to articles is very essential and you can do that on dev.to by adding a cover_image: entry to that block at the top. For example, the block for this post should look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;---
title: Adding a cover image for your dev.to articles
published: true
description: "Photo by Austin Distel on Unsplash"
tags: blogging,,coverImages,,article
cover_image: https://dev-to-uploads.s3.amazonaws.com/i/a8c7m9up8jcpa2zuycnk.jpg

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

&lt;/div&gt;



&lt;p&gt;Get a nice picture/images maintaining the ratio of 1000x420 pixels for better resolution.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Thank you for reading.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>blogging</category>
      <category>coverimages</category>
      <category>article</category>
    </item>
    <item>
      <title>HTML Tags you should know when learning how to code.</title>
      <dc:creator>Kehinde Abe</dc:creator>
      <pubDate>Thu, 14 May 2020 21:31:33 +0000</pubDate>
      <link>https://dev.to/thecodezs/html-tags-you-should-know-when-learning-how-to-code-93i</link>
      <guid>https://dev.to/thecodezs/html-tags-you-should-know-when-learning-how-to-code-93i</guid>
      <description>&lt;p&gt;I assume you already know what HTML is. In case you're just learning HTML, you can read more about that here. &lt;em&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML"&gt;MDN&lt;/a&gt;&lt;/em&gt;. &lt;/p&gt;

 - The HTML Title element defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text tags within the element are ignored. For Example:

&lt;p&gt;&lt;code&gt;&amp;lt;title&amp;gt;Grandma's Heavy Metal Festival Journal&amp;lt;/title&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Link - It's used for linking CSS external links to the document. href is the path the file&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;link href="css/main.css" rel="stylesheet"&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;header - Defines a header for a document or section, &lt;br&gt;
&lt;em&gt;Navigation inside header&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Lists
&lt;/h3&gt;

&lt;p&gt;ul - The ul tag defines an unordered (bulleted) list. Use the ul tag together with the li tag to create unordered lists. These tags are very important whenever you want to create a list item dynamically in Javascript apps like React apps.&lt;/p&gt;

&lt;p&gt;ol - An ordered list—the order of the items is important, Could be alphabetical, numerical. etc. It can only have li elements as direct children.&lt;/p&gt;

&lt;p&gt;li - A single list item, it must be inside a ul, ol, or menu. It can have most other elements inside it.&lt;br&gt;
Most commonly used HTML tags other than the ones we've written are as follows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;body - The page's content.&lt;/li&gt;
&lt;li&gt;h1 - A section heading.&lt;/li&gt;
&lt;li&gt;p - A paragraph.&lt;/li&gt;
&lt;li&gt;a — A link.&lt;/li&gt;
&lt;li&gt;img - An image.&lt;/li&gt;
&lt;li&gt;div — A block-level container for content.&lt;/li&gt;
&lt;li&gt;span — An inline container for content.&lt;/li&gt;
&lt;li&gt;head — The document head.&lt;/li&gt;
&lt;li&gt;HTML — The root element.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Resources Used: &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML"&gt;MDN&lt;/a&gt;,&lt;a href="https://www.w3schools.com/html/default.asp"&gt;W3schools&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Thanks 🙌 for reading and good luck with your coding journey!&lt;br&gt;
Please share this article with your fellow devs if you like it!&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>firstarticle</category>
      <category>html</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
