<?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: Massii</title>
    <description>The latest articles on DEV Community by Massii (@massii).</description>
    <link>https://dev.to/massii</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%2F694513%2Fe0413c7a-db2c-4e82-8f9d-2433146bcc4c.jpeg</url>
      <title>DEV Community: Massii</title>
      <link>https://dev.to/massii</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/massii"/>
    <language>en</language>
    <item>
      <title>How do I install multiple node js version on the same machine</title>
      <dc:creator>Massii</dc:creator>
      <pubDate>Tue, 15 Feb 2022 17:13:05 +0000</pubDate>
      <link>https://dev.to/massii/how-do-i-install-multiple-node-js-version-on-the-same-machine-30cm</link>
      <guid>https://dev.to/massii/how-do-i-install-multiple-node-js-version-on-the-same-machine-30cm</guid>
      <description>&lt;p&gt;In this post, we will get to know and learn about running multiple node js version on the same machine with NVM .&lt;/p&gt;

&lt;p&gt;While working on the multiple projects of NodeJs, you might be required to run different projects on the different nodejs version or for the legacy nodejs projects, you might require an old version of the nodejs, and the others required a new version of node-js, or to checkout the new feature of nodejs, you need to install the latest version of node js&lt;/p&gt;

&lt;p&gt;As on the same machine, we can only install one version of the nodejs, so it's very painful to uninstall and install the new node version as per your project requirements.&lt;/p&gt;

&lt;p&gt;To overcome this problem, we can use the Node Version Manager (NVM). NVM allows installing multiple node js versions on the same machine and switching between the required node js version.&lt;/p&gt;

&lt;h1&gt;
  
  
  Installation of NVM
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Windows
&lt;/h2&gt;

&lt;p&gt;Download the latest version of NVM&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/coreybutler/nvm-windows/releases/latest" rel="noopener noreferrer"&gt;https://github.com/coreybutler/nvm-windows/releases/latest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download nvm-setup.zip and install on the windows&lt;/p&gt;

&lt;p&gt;Verify Installation&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nvm version&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  MacOs/Linux
&lt;/h2&gt;

&lt;p&gt;Using curl&lt;/p&gt;

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

&lt;p&gt;Using Wget&lt;/p&gt;

&lt;p&gt;&lt;code&gt;wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Verify Installation&lt;/p&gt;

&lt;p&gt;&lt;code&gt;command -v nvm&lt;/code&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Usage
&lt;/h1&gt;

&lt;p&gt;Get a List of all available NodeJs versions&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nvm  ls available&lt;/code&gt; //windows&lt;br&gt;
&lt;code&gt;nvm ls-remote&lt;/code&gt; //MacOs/Linux&lt;/p&gt;

&lt;p&gt;Install latest NodeJs version&lt;/p&gt;

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

&lt;p&gt;Install latest LTS Release&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nvm install --lts&lt;/code&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Install particular NodeJs version
&lt;/h1&gt;

&lt;p&gt;Multiple NodeJs version can be installed using the below command.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nvm install 8.11.1&lt;/code&gt; // to install the 8.11.1 version&lt;/p&gt;

&lt;h1&gt;
  
  
  UnInstall the multiple NodeJs version
&lt;/h1&gt;

&lt;p&gt;&lt;code&gt;nvm uninstall 8.11.1&lt;/code&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Switching the NodeJs version
&lt;/h1&gt;

&lt;p&gt;&lt;code&gt;nvm list&lt;/code&gt;  //for windows&lt;br&gt;
&lt;code&gt;nvm ls&lt;/code&gt; //for MacOs/linux&lt;/p&gt;

&lt;h1&gt;
  
  
  Switching Between installed NodeJs Versions
&lt;/h1&gt;

&lt;p&gt;&lt;code&gt;nvm use 8.11.1&lt;/code&gt;  //To enable 8.11.1&lt;br&gt;
&lt;code&gt;nvm use 12.13.1&lt;/code&gt; //To enable 12.13.1&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.loginradius.com/blog/async/run-multiple-nodejs-version-on-the-same-machine/" rel="noopener noreferrer"&gt;Full Article&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascipt</category>
      <category>npm</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Git-Flow vs Github-flow</title>
      <dc:creator>Massii</dc:creator>
      <pubDate>Sat, 12 Feb 2022 17:49:24 +0000</pubDate>
      <link>https://dev.to/massii/git-flow-vs-github-flow-2iop</link>
      <guid>https://dev.to/massii/git-flow-vs-github-flow-2iop</guid>
      <description>&lt;h1&gt;
  
  
  Git-flow
&lt;/h1&gt;

&lt;p&gt;Git-flow was described by Vincent Driessen on his 2010 post A successful Git branching model. I’ve found it to be a great way to organize a repository. In short, you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keep your master branch as the code that has been released,&lt;/li&gt;
&lt;li&gt;Use a develop branch as the current “snapshot” of what will go into the next release - your living beta,&lt;/li&gt;
&lt;li&gt;Spawn off feature branches off develop for every new feature, which are merged back into it when they’re ready,&lt;/li&gt;
&lt;li&gt;When you are ready to release, you merge to master and tag with a release version.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are other considerations for how to deal with hotfixes, but that’s the gist of it. You can see a git-flow diagram below:&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%2F3su7idgm9gm94oygef3u.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%2F3su7idgm9gm94oygef3u.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is a great approach and it has several advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;master always remains as a stable reflection of your live code,&lt;/li&gt;
&lt;li&gt;You can trivially do hotfixes without worrying about unfinished features,&lt;/li&gt;
&lt;li&gt;Feature branches ensure that teams working in parallel don’t trip over each other and that conflicts need to be handled only once (the moment the feature is done),&lt;/li&gt;
&lt;li&gt;It allows teams to cherry-pick changes other teams may be doing on their feature branches, without needing these commits to be on develop already,&lt;/li&gt;
&lt;li&gt;It lets you do a release off develop at any point - if a feature isn’t ready, that’s OK, you just leave it for the next release.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are helper scripts to assist you with Gitflow. Atlassian’s SourceTree supports it directly as well.&lt;/p&gt;

&lt;h1&gt;
  
  
  Github-flow
&lt;/h1&gt;

&lt;p&gt;Proponents of Github-flow (and its cousin Gitlab-flow) have a few complaints about it. The main argument is that it goes against continuous delivery, since at some point someone needs to “flip a switch” and do a release from develop into master.&lt;/p&gt;

&lt;p&gt;That’s a valid argument. Nothing is less continuous than manual switch-flipping.&lt;/p&gt;

&lt;p&gt;The Github-flow proposal is that you should:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Do away with the develop branch altogether,&lt;/li&gt;
&lt;li&gt;Spawn all feature branches off master, and merge them back into master when ready,&lt;/li&gt;
&lt;li&gt;Version tagging should not be carried by a human, but by an automated process whenever code is pushed to live,&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are valid points and they do result on a lighter-weight workflow. But they ignore that there are cases where you want a manual release, a negotiation of what is supposed to go into any particular version.&lt;/p&gt;

&lt;h1&gt;
  
  
  My take on it
&lt;/h1&gt;

&lt;p&gt;Both systems have their uses. I think something like Github-flow is a great approach if what you are developing is an application. On that case, just using a master branch plus features branches works well, and you can do your releases in an automated fashion. The deployment itself is the atomic end-product you care about.&lt;/p&gt;

&lt;p&gt;When you are building a library, where people outside your team might depend on specific versions, I think git-flow is the right approach. For a library, you want to lump your versioned changes together into a conceptual unit - including potentially separating or delaying breaking changes. At this point, coming to an agreement on what should go into a version makes sense, as does the manual release process of git-flow.&lt;/p&gt;

&lt;p&gt;If anybody outside of your team depends on your versioning scheme, or will need to have a clear conceptual overview of what changed on a particular release, I’d recommend using git-flow.&lt;/p&gt;

&lt;p&gt;If whatever you are releasing is the final artifact, and it will be used but others will not need to reference its version, then GitHub-flow does the trick.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://numergent.com/2016-12/Branching-workflow-git-flow-and-github-flow.html" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Top 5 vscode themes</title>
      <dc:creator>Massii</dc:creator>
      <pubDate>Sat, 12 Feb 2022 10:36:58 +0000</pubDate>
      <link>https://dev.to/massii/top-5-vscode-themes-4l66</link>
      <guid>https://dev.to/massii/top-5-vscode-themes-4l66</guid>
      <description>&lt;h1&gt;
  
  
  1 : Ayu theme
&lt;/h1&gt;

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

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=teabyii.ayu" rel="noopener noreferrer"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  2 : Material darker
&lt;/h1&gt;

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

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=jantto.theme-material-darker" rel="noopener noreferrer"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  3 : deepdark material
&lt;/h1&gt;

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

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=Nimda.deepdark-material" rel="noopener noreferrer"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  4 : Andromeda theme
&lt;/h1&gt;

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

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=EliverLara.andromeda" rel="noopener noreferrer"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  5 : Atom one dark
&lt;/h1&gt;

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

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=akamud.vscode-theme-onedark" rel="noopener noreferrer"&gt;Download&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  follow me
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/MassiiNechiche" rel="noopener noreferrer"&gt;Github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>theme</category>
      <category>looks</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Conventional Commits 1.0.0</title>
      <dc:creator>Massii</dc:creator>
      <pubDate>Fri, 11 Feb 2022 17:04:54 +0000</pubDate>
      <link>https://dev.to/massii/conventional-commits-100-3ncl</link>
      <guid>https://dev.to/massii/conventional-commits-100-3ncl</guid>
      <description>&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with &lt;strong&gt;SemVer&lt;/strong&gt;, by describing the features, fixes, and breaking changes made in commit messages.&lt;/p&gt;

&lt;p&gt;The commit message should be structured as follows:&lt;/p&gt;




&lt;p&gt;type [ optional scope ] : description&lt;/p&gt;

&lt;p&gt;[optional body]&lt;/p&gt;

&lt;p&gt;[optional footer(s)]&lt;/p&gt;




&lt;p&gt;The commit contains the following structural elements, to communicate intent to the consumers of your library:&lt;/p&gt;

&lt;p&gt;1- &lt;strong&gt;fix&lt;/strong&gt;: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).&lt;/p&gt;

&lt;p&gt;2- &lt;strong&gt;feat&lt;/strong&gt;: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).&lt;/p&gt;

&lt;p&gt;3- &lt;strong&gt;BREAKING CHANGE&lt;/strong&gt;: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.&lt;/p&gt;

&lt;p&gt;4- types other than fix: and feat: are allowed, for example @commitlint/config-conventional (based on the the Angular convention) recommends build:, chore:, ci:, docs:, style:, refactor:, perf:, test:, and others.&lt;/p&gt;

&lt;p&gt;5- footers other than BREAKING CHANGE:  may be provided and follow a convention similar to git trailer format.&lt;/p&gt;

&lt;p&gt;Additional types are not mandated by the Conventional Commits specification, and have no implicit effect in Semantic Versioning (unless they include a BREAKING CHANGE). A scope may be provided to a commit’s type, to provide additional contextual information and is contained within parenthesis, e.g., feat(parser): add ability to parse arrays.&lt;/p&gt;

&lt;h2&gt;
  
  
  Examples
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Commit message with description and breaking change footer&lt;/strong&gt;&lt;br&gt;
feat: allow provided config object to extend other configs&lt;br&gt;
BREAKING CHANGE: &lt;code&gt;extends&lt;/code&gt; key in config file is now used for extending other config files&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with ! to draw attention to breaking change&lt;/strong&gt;&lt;br&gt;
feat!: send an email to the customer when a product is shipped&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with scope and ! to draw attention to breaking change&lt;/strong&gt;&lt;br&gt;
feat(api)!: send an email to the customer when a product is shipped&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with both ! and BREAKING CHANGE footer&lt;/strong&gt;&lt;br&gt;
chore!: drop support for Node 6&lt;br&gt;
BREAKING CHANGE: use JavaScript features not available in Node 6.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with no body&lt;/strong&gt;&lt;br&gt;
docs: correct spelling of CHANGELOG&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with scope&lt;/strong&gt;&lt;br&gt;
feat(lang): add polish language&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Commit message with multi-paragraph body and multiple footers&lt;/strong&gt;&lt;br&gt;
fix: prevent racing of requests&lt;br&gt;
Introduce a request id and a reference to latest request. Dismiss incoming responses other than from latest request.&lt;br&gt;
Remove timeouts which were used to mitigate the racing issue but are obsolete now.&lt;br&gt;
Reviewed-by: Z&lt;br&gt;
Refs: #123&lt;/p&gt;

&lt;h2&gt;
  
  
  Specification
&lt;/h2&gt;

&lt;p&gt;The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in &lt;strong&gt;RFC 2119&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;1- Commits MUST be prefixed with a type, which consists of a noun, feat, fix, etc., followed by the OPTIONAL scope, OPTIONAL !, and REQUIRED terminal colon and space.&lt;/p&gt;

&lt;p&gt;2- The type feat MUST be used when a commit adds a new feature to your application or library.&lt;/p&gt;

&lt;p&gt;3- The type fix MUST be used when a commit represents a bug fix for your application.&lt;/p&gt;

&lt;p&gt;4- A scope MAY be provided after a type. A scope MUST consist of a noun describing a section of the codebase surrounded by parenthesis, e.g., fix(parser):&lt;/p&gt;

&lt;p&gt;5- A description MUST immediately follow the colon and space after the type/scope prefix. The description is a short summary of the code changes, e.g., fix: array parsing issue when multiple spaces were contained in string.&lt;/p&gt;

&lt;p&gt;6- A longer commit body MAY be provided after the short description, providing additional contextual information about the code changes. The body MUST begin one blank line after the description.&lt;/p&gt;

&lt;p&gt;7- A commit body is free-form and MAY consist of any number of newline separated paragraphs.&lt;/p&gt;

&lt;p&gt;8- One or more footers MAY be provided one blank line after the body. Each footer MUST consist of a word token, followed by either a :&amp;lt; space &amp;gt; or &amp;lt; space &amp;gt;# separator, followed by a string value (this is inspired by the &lt;strong&gt;git trailer convention&lt;/strong&gt;).&lt;/p&gt;

&lt;p&gt;9- A footer’s token MUST use - in place of whitespace characters, e.g., Acked-by (this helps differentiate the footer section from a multi-paragraph body). An exception is made for BREAKING CHANGE, which MAY also be used as a token.&lt;/p&gt;

&lt;p&gt;10- A footer’s value MAY contain spaces and newlines, and parsing MUST terminate when the next valid footer token/separator pair is observed.&lt;/p&gt;

&lt;p&gt;11- Breaking changes MUST be indicated in the type/scope prefix of a commit, or as an entry in the footer.&lt;/p&gt;

&lt;p&gt;12- If included as a footer, a breaking change MUST consist of the uppercase text BREAKING CHANGE, followed by a colon, space, and description, e.g., BREAKING CHANGE: environment variables now take precedence over config files.&lt;/p&gt;

&lt;p&gt;13- If included in the type/scope prefix, breaking changes MUST be indicated by a ! immediately before the :. If ! is used, BREAKING CHANGE: MAY be omitted from the footer section, and the commit description SHALL be used to describe the breaking change.&lt;/p&gt;

&lt;p&gt;14- Types other than feat and fix MAY be used in your commit messages, e.g., docs: updated ref docs.&lt;/p&gt;

&lt;p&gt;15- The units of information that make up Conventional Commits MUST NOT be treated as case sensitive by implementors, with the exception of BREAKING CHANGE which MUST be uppercase.&lt;/p&gt;

&lt;p&gt;16- BREAKING-CHANGE MUST be synonymous with BREAKING CHANGE, when used as a token in a footer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Use Conventional Commits
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Automatically generating CHANGELOGs.&lt;/li&gt;
&lt;li&gt;Automatically determining a semantic version bump (based on the types of commits landed).&lt;/li&gt;
&lt;li&gt;Communicating the nature of changes to teammates, the public, and other stakeholders.&lt;/li&gt;
&lt;li&gt;Triggering build and publish processes.&lt;/li&gt;
&lt;li&gt;Making it easier for people to contribute to your projects, by allowing them to explore a more structured commit history.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  More
&lt;/h2&gt;

&lt;p&gt;Credits to &lt;a href="https://www.conventionalcommits.org/en/v1.0.0/" rel="noopener noreferrer"&gt;conventionalcommits&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Follow me
&lt;/h2&gt;

&lt;p&gt;Follow me on &lt;a href="https://github.com/MassiiNechiche" rel="noopener noreferrer"&gt;Github&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>programming</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
