不要怂,就是干,撸起袖子干!

Commit aa40aef6 by Christopher Lis Committed by Sushant

Update installation docs to include Yarn (#7612)

Add Yarn installation scripts to getting started documentation. With many developers making use of Yarn as of late, providing quick copy/paste scripts will prevent developers from having to type the scripts manually.
1 parent c3859940
Showing with 11 additions and 1 deletions
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
## Installation ## Installation
Sequelize is available via NPM. Sequelize is available via NPM and Yarn.
```bash ```bash
// Using NPM
$ npm install --save sequelize $ npm install --save sequelize
# And one of the following: # And one of the following:
...@@ -12,6 +13,15 @@ $ npm install --save pg pg-hstore ...@@ -12,6 +13,15 @@ $ npm install --save pg pg-hstore
$ npm install --save mysql2 $ npm install --save mysql2
$ npm install --save sqlite3 $ npm install --save sqlite3
$ npm install --save tedious // MSSQL $ npm install --save tedious // MSSQL
// Using Yarn
$ yarn add sequelize
# And one of the following:
$ yarn add pg pg-hstore
$ yarn add mysql2
$ yarn add sqlite3
$ yarn add tedious // MSSQL
``` ```
## Setting up a connection ## Setting up a connection
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!