yarn install version code example

Example 1: install yarn

npm install -g yarn

Example 2: add dev dependency yarn

yarn add -D package
//or
yarn add --dev package

Example 3: yarn version

yarn --version

Example 4: install dev dependency yarn

yarn add nameOfPackage --dev

Example 5: yarn latest version

choco install yarn

Example 6: yarn react install

There are two ways where you can initiate a REACT app.. 
1. Using npm : npm init react-app <app_name>
	 example : npm init react-app sampleApp
2. Using yarn : yarn create react-app <app_name>
	 example : yarn create react-app sampleApp

Tags:

Misc Example