How to Install Yarn on Ubuntu 20.04

Maneesh kushwaha
3 min readMay 28, 2020
How to Install Yarn on Ubuntu 20.04

How to Install Yarn on Ubuntu 20.04

We hope this post helped you to find out How to Install Yarn on Ubuntu 20.04

Yarn is a JavaScript bundle supervisor appropriate with npm that helps you automate the method of putting in, updating, configuring, and eradicating npm packages. It caches each obtain bundle and quickens the set up course of by parallelizing operations.

Reading full article here https://www.mstvlife.com/how-to-install-yarn-on-ubuntu-20-04/

On this tutorial, we’ll clarify the best way to set up Yarn on Ubuntu 20.04. We can even undergo the essential Yarn instructions and choices.

Installing in Yarn on Ubuntu #

Putting in Yarn on Ubuntu is pretty easy. We’ll allow the official Yarn repository, import the repository GPG key, and set up the bundle. The repository is persistently maintained and gives essentially the most up-to-date model.

Import the repository’s GPG key and add the Yarn APT repository to your system by operating the next instructions:

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

As soon as the repository is enabled, replace the bundle record, and set up Yarn.

sudo apt update
sudo apt install yarn

The command above can even set up Node.js. When you put in Node trough nvm, skip the Node.js set up with:

sudo apt install --no-install-recommends yarn

Once completed, verify the installation by printing the Yarn version:

yarn --version

The output will look something like this:

1.22.4

The model put in in your system might differ from the one proven above.

That’s it! You might have efficiently put in Yarn in your Ubuntu machine, and you can begin utilizing it.

Utilizing Yarn #

Now that Yarn has been put in in your Ubuntu system, let’s discover a few of the commonest Yarn instructions.

Creating a brand new challenge #

Begin by making a listing on your software and navigate into it:

mkdir ~/my_project && cd ~/my_project

To create a new project, run yarn init:

yarn init my_project

The command will ask you several questions. Enter information as prompted, or accept the defaults:

yarn init v1.22.4
question name (vagrant): Linuxize
question version (1.0.0): 0.0.1
question description: Testing Yarn
question entry point (index.js):
question repository url:
question author: Linuxize
question license (MIT):
question private:
success Saved package.json
Done in 20.18s.

As soon as accomplished, the script creates a fundamental bundle.json file containing the offered info. You’ll be able to open and edit this file at any time.

Reading full article here https://www.mstvlife.com/how-to-install-yarn-on-ubuntu-20-04/

Including dependency #

So as to add an npm bundle to the challenge dependencies, use the yarn add command adopted by the bundle identify:

yarn add [package_name]

The command above will replace the bundle.json and yarn.lock recordsdata.

By default, when solely the bundle identify is given, Yarn installs the newest model. To put in a particular model or tag, use the next syntax:

yarn add [package_name]@[version_or_tag]

Upgrading dependency #

To upgrade the packages, use one of the following commands:

yarn upgradeyarn upgrade [package_name]yarn upgrade [package_name]@[version_or_tag]

If no bundle identify is given, the command will replace the challenge dependencies to their newest model based on the model vary specified within the bundle.json file. In any other case, solely the desired packages are up to date.

Eradicating dependency #

Use the yarn take away command adopted by the bundle identify to take away a dependency:

Conclusion #

Now we have proven you the best way to set up Yarn in your Ubuntu machine. For extra details about Yarn go to their documentation web page.

We hope the How to Install Yarn on Ubuntu 20.04 help you. If you have any query regarding How to Install Yarn on Ubuntu 20.04 drop a comment below and we will get back to you at the earliest.

We hope this post helped you to find out How to Install Yarn on Ubuntu 20.04 . You may also want to see — How to Install MariaDB on Ubuntu 20.04

Reading full article here https://www.mstvlife.com/how-to-install-yarn-on-ubuntu-20-04/

Sign up to discover human stories that deepen your understanding of the world.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Responses (2)

Write a response

Заметьте, вместо «yarn» выбирается «cmdtest»
Уже установлен пакет cmdtest самой новой версии (0.32.14.gcdfe14e-1).

not works - install cmdtest instead of yarn