<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>javascript Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 22 Jun 2020 15:03:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Angular on Ubuntu 20.04 / Debian 10?</title>
		<link>https://www.osradar.com/install-angular-ubuntu-20-04-debian-10/</link>
					<comments>https://www.osradar.com/install-angular-ubuntu-20-04-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 22 Jun 2020 23:12:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[angular]]></category>
		<category><![CDATA[angularcli]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17445</guid>

					<description><![CDATA[<p>In this post, I will show you how to install Angular on Ubuntu 20.04 / Debian 10. Angular: a command-line interface for Angular Angular is a Javascript framework for creating the front end side using the MVC pattern. It was created in 2009 by Google and is becoming more and more popular. Thanks to Angular [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-angular-ubuntu-20-04-debian-10/">How to install Angular on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>In this post, I will show you how to install Angular on Ubuntu 20.04 / Debian 10.</strong></p>



<h2>Angular: a command-line interface for Angular</h2>



<p><a href="https://angular.io/">Angular</a> is a Javascript framework for creating the front end side using the MVC  pattern. It was created in 2009 by Google and is becoming more and more popular. Thanks to Angular we will be able to speed up the work from the front end using a lot of Javascript functionalities perfectly organized. Its methodology is the SPA, i.e. single page application.</p>



<p>On the other hand, Angular is being widely used in a new stack called MEAN (<a href="https://www.osradar.com/how-to-install-mongodb-on-ubuntu-18-04/">MongoDB</a>, ExpressJS, Angular and <a href="https://www.osradar.com/how-to-install-nodejs-on-ubuntu-18-04-lts-linux-mint-19/">NodeJS</a>) where you can create other types of web applications.</p>



<p>In order to have a tool to manage Angular better, it is that <a href="https://cli.angular.io/">AngularCLI</a> arises. Angular is a command-line interface for Angular, with it, we can create an application that already works, right out of the box.</p>



<p>So, if you use Angular or you want to learn about it, you have to install Angular.</p>



<h2>Install Angular on Ubuntu 20.04 / Debian 10</h2>



<p>AngularCLI requires for its operation that the system has NodeJS installed. So the first step is to install it. I recommend you to read our post about it:</p>



<p><a rel="noreferrer noopener" aria-label="How to install NodeJS on Debian 10? (opens in a new tab)" href="https://www.osradar.com/two-ways-to-install-nodejs-debian-10-buster/" target="_blank">How to install NodeJS on Debian 10?</a></p>



<p><a href="https://www.osradar.com/how-to-install-node-js-on-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install NodeJS on Ubuntu 20.04?</a></p>



<p>After it is correctly installed, we can install it using npm. So, you have to install it too.</p>



<pre class="wp-block-preformatted">:~$ sudo apt install npm</pre>



<p>To do so, just use the following command:</p>



<pre class="wp-block-preformatted">:~$ sudo npm install -g @angular/cli</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="743" height="216" src="https://www.osradar.com/wp-content/uploads/2019/12/1-19.png" alt="1.- Install Angular on Ubuntu 20.04 / Debian 10" class="wp-image-17448" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-19.png 743w, https://www.osradar.com/wp-content/uploads/2019/12/1-19-300x87.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-19-696x202.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/1-19-741x216.png 741w" sizes="(max-width: 743px) 100vw, 743px" /><figcaption>1.- Install Angular on Ubuntu 20.04 / Debian 10</figcaption></figure>



<p>Then, create a new project using this tool:</p>



<pre class="wp-block-preformatted">:~$ ng new example-project</pre>



<p>Now, you  have to choose the slytesheet format.</p>



<p>This will create a new folder called example-project. Of course, you can change the name of the project.  Access it and serve the project. </p>



<pre class="wp-block-preformatted">:~$ cd example-project 
:~$ ng serve </pre>



<p>This will make the application available at <code>http://localhost:4200</code>. Remember that this port has to be available in the firewall.</p>



<p>However, we can change those parameters and specify a port and a host. </p>



<pre class="wp-block-preformatted">:~$ ng serve --host [host_ip] --port [port]</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="297" src="https://www.osradar.com/wp-content/uploads/2019/12/2-17-1024x297.png" alt="2.- Running an Angular Aplication" class="wp-image-17449" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-17-1024x297.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/2-17-300x87.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-17-768x222.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/2-17-696x202.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/2-17-1068x309.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/2-17.png 1184w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Running an Angular Application</figcaption></figure>



<p>When you open the browser and access your project, you will see the following:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2019/12/3-17-1024x506.png" alt="3.- Project running" class="wp-image-17450" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-17-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/3-17-850x420.png 850w, https://www.osradar.com/wp-content/uploads/2019/12/3-17.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Project running</figcaption></figure>



<p>So, Angular is ready to be used.</p>



<h2>Conclusion</h2>



<p>Developers need tools to help speed up projects. Well, with Angular we will have a terminal interface to manage this fantastic framework.</p>



<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener" aria-label="our Telegram channel. (opens in a new tab)">our Telegram channel.</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-angular-ubuntu-20-04-debian-10/">How to install Angular on Ubuntu 20.04 / Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-angular-ubuntu-20-04-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install yarn on FreeBSD 12?</title>
		<link>https://www.osradar.com/how-to-install-yarn-freebsd-12/</link>
					<comments>https://www.osradar.com/how-to-install-yarn-freebsd-12/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 28 Feb 2020 00:11:00 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[freebasd 12]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[yarn]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=18459</guid>

					<description><![CDATA[<p>In the development of any application, there are dependencies that we have to handle. With time, these can become a problem so it is convenient to have a tool that does it for us. In the case of Javascript, we have a very good one. So, in this post, I will show you how to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yarn-freebsd-12/">How to install yarn on FreeBSD 12?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In the development of any application, there are dependencies that we have to handle. With time, these can become a problem so it is convenient to have a tool that does it for us. In the case of Javascript, we have a very good one. So, in this post, I will show you how to install Yarn on FreeBSD 12.</p>
<p><a href="https://yarnpkg.com">Yarn</a> is a Javascript dependency manager that stands out for being fast, secure and reliable. It is presented to us as the most solid alternative to NPM. In addition, it is open source and it has the protection of a giant like <a href="https://www.osradar.com/facebook-vulnerability-affecting-50-million-users/">Facebook</a> what guarantees us solidity and robustness of the project. Some of its characteristics are the following:</p>
<ul>
<li>Fast: Yarn caches every package it has downloaded.</li>
<li>Reliable: Using a detailed but concise lockfile format and a deterministic algorithm for install operations.</li>
<li>Secure: Yarn uses checksums to verify the integrity of every installed package before its code is executed.</li>
</ul>
<p>There are also other features such as its efficiency in the use of the network as well as an offline mode. All this can be found on the <a href="https://github.com/yarnpkg/yarn">Github site</a> of Yarn.</p>
<p>So, let us start.</p>
<h2>Install Yarn on FreeBSD 12</h2>
<p>For this tutorial, you must have sudo enabled, so this is the first step.</p>
<p><a href="https://www.osradar.com/enable-sudo-on-freebsd-12/" target="_blank" rel="noopener noreferrer">How to enable sudo on FreeBSD 12?</a></p>
<p>After you can use sudo, you can continue.</p>
<p>The FreeBSD 12 repositories are quite large, so we will first look for yarn in them.</p>
<p>Open a terminal and run the following:</p>
<pre>:~$ sudo pkg search yarn
yarn-1.19.1                    Package manager for node, alternative to npm
yarn-node10-1.19.1             Package manager for node, alternative to npm
yarn-node12-1.19.1             Package manager for node, alternative to npm
yarn-node8-1.19.1              Package manager for node, alternative to npm</pre>
<p><figure id="attachment_18494" aria-describedby="caption-attachment-18494" style="width: 849px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18494" src="https://www.osradar.com/wp-content/uploads/2020/02/1-17.png" alt="1.- Searching for yarn" width="849" height="181" srcset="https://www.osradar.com/wp-content/uploads/2020/02/1-17.png 849w, https://www.osradar.com/wp-content/uploads/2020/02/1-17-300x64.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/1-17-768x164.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/1-17-696x148.png 696w" sizes="(max-width: 849px) 100vw, 849px" /><figcaption id="caption-attachment-18494" class="wp-caption-text">1.- Searching for yarn</figcaption></figure></p>
<p>As you can see in the picture, yarn is in the official repositories. And also, they have several versions according to the version of NodeJS we have installed.</p>
<p>However, to install it, just use the following command:</p>
<pre>:~$ sudo pkg install yarn
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	yarn: 1.19.1
	node: 13.3.0
	libnghttp2: 1.40.0
	c-ares: 1.15.0_1
	libuv: 1.34.0
	icu: 65.1,1

Number of packages to be installed: 6

The process will require 92 MiB more space.
19 MiB to be downloaded.

Proceed with this action? [y/N]:</pre>
<p><figure id="attachment_18495" aria-describedby="caption-attachment-18495" style="width: 966px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18495" src="https://www.osradar.com/wp-content/uploads/2020/02/2-16.png" alt="2.- Install Yarn on FreeBSD 12" width="966" height="360" srcset="https://www.osradar.com/wp-content/uploads/2020/02/2-16.png 966w, https://www.osradar.com/wp-content/uploads/2020/02/2-16-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/2-16-768x286.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/2-16-696x259.png 696w" sizes="(max-width: 966px) 100vw, 966px" /><figcaption id="caption-attachment-18495" class="wp-caption-text">2.- Install Yarn on FreeBSD 12</figcaption></figure></p>
<p>Once it is installed, you can check the installed version.</p>
<pre>:~$ yarn --version</pre>
<p><figure id="attachment_18496" aria-describedby="caption-attachment-18496" style="width: 789px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18496" src="https://www.osradar.com/wp-content/uploads/2020/02/3-13.png" alt="3.- Yarn version" width="789" height="130" srcset="https://www.osradar.com/wp-content/uploads/2020/02/3-13.png 789w, https://www.osradar.com/wp-content/uploads/2020/02/3-13-300x49.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/3-13-768x127.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/3-13-696x115.png 696w" sizes="(max-width: 789px) 100vw, 789px" /><figcaption id="caption-attachment-18496" class="wp-caption-text">3.- Yarn version</figcaption></figure></p>
<p>This indicates that yarn is ready for action.</p>
<h2>Basic use of Yarn</h2>
<p>Now we will look at some basic steps in the use of yarn. I&#8217;m going to create a sample project, and for that I&#8217;ll first create a new dedicated folder.</p>
<pre>:~$ mkdir project</pre>
<p>Now I&#8217;ll access it:</p>
<pre>cd project/</pre>
<p>And within it, I initiate the yarn project. This will make me ask some questions about the configuration of the project. Nothing complicated.</p>
<pre>:~$ yarn init
yarn init v1.19.1
question name (project): Example
question version (1.0.0): 
question description: This is an example
question entry point (index.js): 
question repository url: https://www.osradar.com/
question author: Angelo
question license (MIT): 
question private: no
success Saved package.json
Done in 34.27s.</pre>
<p><figure id="attachment_18497" aria-describedby="caption-attachment-18497" style="width: 842px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-18497" src="https://www.osradar.com/wp-content/uploads/2020/02/4-13.png" alt="4.- Creating a new project with Yarn" width="842" height="290" srcset="https://www.osradar.com/wp-content/uploads/2020/02/4-13.png 842w, https://www.osradar.com/wp-content/uploads/2020/02/4-13-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2020/02/4-13-768x265.png 768w, https://www.osradar.com/wp-content/uploads/2020/02/4-13-696x240.png 696w" sizes="(max-width: 842px) 100vw, 842px" /><figcaption id="caption-attachment-18497" class="wp-caption-text">4.- Creating a new project with Yarn</figcaption></figure></p>
<p>If you want to add a new dependency, just use the following command:</p>
<pre>:~$ yarn add [name]</pre>
<p>Or to eliminate it:</p>
<pre>:~$ yarn remove [name]</pre>
<p>And from the project folder, we can install the rooms:</p>
<pre>:~$ yarn</pre>
<p>And so we can continue with the installation.</p>
<h2>Conclusion</h2>
<p>Yarn is a fantastic tool for Javascript developers and thus makes it easier to create functional web applications. Now you know how to install it on FreeBSD 12.</p>
<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yarn-freebsd-12/">How to install yarn on FreeBSD 12?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-yarn-freebsd-12/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Yarn on CentOS 8?</title>
		<link>https://www.osradar.com/install-yarn-centos-8/</link>
					<comments>https://www.osradar.com/install-yarn-centos-8/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 28 Sep 2019 13:31:35 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Centos 8]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[yarn]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13903</guid>

					<description><![CDATA[<p>The development of web applications is a process that many people don&#8217;t know and think is something very easy to do. However, those of us who have developed applications know that it is not and that tools are needed to speed up the process. Especially in the web environment that require many libraries of all [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-yarn-centos-8/">How to install Yarn on CentOS 8?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The development of web applications is a process that many people don&#8217;t know and think is something very easy to do. However, those of us who have developed applications know that it is not and that tools are needed to speed up the process. Especially in the web environment that require many libraries of all kinds. This includes Javascript whose dependency management has been monopolized by NVM. However, the company Facebook in union with after big have created yarn. A javascript dependency manager that promises to be fast and reliable. In this post, you will learn how to install Yarn on CentOS 8.</p>
<p><a href="https://yarnpkg.com/lang/en/" target="_blank" rel="noopener noreferrer">Yarn</a> is a new JavaScript package installer and dependency manager released by Facebook. Other companies such as Google have also collaborated. With yarn, the problems of library dependencies that a web project requires are solved. Normally, it&#8217;s done manually but it&#8217;s not optimal, that&#8217;s why Yarn solves this problem.</p>


<p>Yarn&#8217;s performance is quite similar to that of NPM which is its direct competitor. However, the performance is somewhat superior at Yarn. Some of Yarn&#8217;s <strong>key features are security and dependency resolution speed</strong>.</p>



<h2>Install Yarn on CentOS 8</h2>



<p>The first requirement is to install NodeJS. Remember that Yarn uses it as an engine in its operation.</p>



<p>Read, <a href="https://www.osradar.com/install-nodejs-on-centos-8-rhel-8-oracle-linux-8/" target="_blank" rel="noreferrer noopener" aria-label="How to install NodeJS on CentOS 8? (opens in a new tab)">How to install NodeJS on CentOS 8?</a></p>



<p>In that post, you have several methods. Choose the best one for you. Then, continue the tutorial.</p>



<p>After this, the Yarn repository must be added. This is the fastest and easiest way to install it. It is also the safest way.</p>



<p>So, open a terminal and run:</p>



<pre class="wp-block-preformatted">:~$ su
:~# curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | tee /etc/yum.repos.d/yarn.repo</pre>



<figure class="wp-block-image"><img loading="lazy" width="1021" height="180" src="https://www.osradar.com/wp-content/uploads/2019/09/1-29.png" alt="1.- Add the Yarn repository" class="wp-image-14035" srcset="https://www.osradar.com/wp-content/uploads/2019/09/1-29.png 1021w, https://www.osradar.com/wp-content/uploads/2019/09/1-29-300x53.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/1-29-768x135.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/1-29-696x123.png 696w" sizes="(max-width: 1021px) 100vw, 1021px" /><figcaption>1.- Add the Yarn repository</figcaption></figure>



<p>Now, you can install Yarn on CentOS 8 by running the following command:</p>



<pre class="wp-block-preformatted">:~# dnf install yarn</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="268" src="https://www.osradar.com/wp-content/uploads/2019/09/2-28-1024x268.png" alt="2.- Install yarn on CentOS 8" class="wp-image-14036" srcset="https://www.osradar.com/wp-content/uploads/2019/09/2-28-1024x268.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/2-28-300x79.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/2-28-768x201.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/2-28-696x182.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/2-28-1068x280.png 1068w, https://www.osradar.com/wp-content/uploads/2019/09/2-28.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Install yarn on CentOS 8</figcaption></figure>



<p>Now, check the program version.</p>



<pre class="wp-block-preformatted">:~# yarn -v</pre>



<figure class="wp-block-image"><img loading="lazy" width="870" height="136" src="https://www.osradar.com/wp-content/uploads/2019/09/3-25.png" alt="3.- Yarn on CentOS 8" class="wp-image-14037" srcset="https://www.osradar.com/wp-content/uploads/2019/09/3-25.png 870w, https://www.osradar.com/wp-content/uploads/2019/09/3-25-300x47.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/3-25-768x120.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/3-25-696x109.png 696w" sizes="(max-width: 870px) 100vw, 870px" /><figcaption>3.- Yarn on CentOS 8</figcaption></figure>



<p>Now, you can start to use yarn.</p>



<h2>Conclusion</h2>



<p>In this post, we have installed Yarn on CentOS 8. With this Javascript dependencies manager facilitates the creation of web projects that use many libraries as components of the application. All this in a fast and easy way.</p>



<p>Please share this post with your friends and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener" aria-label="our Telegram channel (opens in a new tab)">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-yarn-centos-8/">How to install Yarn on CentOS 8?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-yarn-centos-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
