Yarn
Yarn is a hub from which you can install, manage, and maintain node/Javascript projects.
Installation
Yarn needs to be installed globally via NPM.
$ npm i --global yarn
Basic Commands (for Yarn 1)
Command | Args | Effect |
---|---|---|
add n [--dev] |
n : Package name(s);--dev : Add to dev dependencies |
Adds package(s) to project |
install |
Install all packages found in project | |
run n |
n : Name of script |
Run the script n found under scripts in package JSON |
start |
Run the script found under scripts /start in package JSON |
|
test |
Run the script found under scripts /test in package JSON |
|
upgrade <package> |
package is optional package name. Can be suffixed with @ followed by a semver. Without a package, will upgrade all packages --latest to get to latest version |
Upgrade |
References
Last modified: 202401040446