This article describes how to install the Yarn package manager on managed hosting accounts. The Yarn package manager is alternative to the npm package manager used for Node.js applications.
To install Yarn, follow these steps:
cd ~ curl -o- -L https://yarnpkg.com/install.sh | bash
The installation script downloads and installs Yarn.
To activate the new Yarn environment immediately, type the following command:
source ~/.bashrc
To verify the installation is working correctly, type the following commands:
yarn yarnpkg
You should receive the following output for each command:
yarn install v1.19.1 [1/4] Resolving packages… success Already up-to-date. Done in 0.05s.
For more information about Yarn, please visit https://yarnpkg.com.