File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ Authentication Flow uses `json web tokens` via Passport library - `passport-jwt`
2222
2323| NodeJS | NPM | YARN |
2424| --- | --- | --- |
25- | ` v18.0.0 ` | ❌ | ✅ |
26- | ` v17.0.0 ` | ❌ | ✅ |
27- | ` v16.13.0 ` | ❌ | ✅ |
28- | ` v16.0.0 ` | ❌ | ❌ |
25+ | ` v18.0.0 ` | ✅ | ✅ |
26+ | ` v16.10.0 ` | ✅ | ✅ |
27+ | ` v14.15.0 ` | ✅ | ✅ |
2928
3029<br />
3130
@@ -62,6 +61,8 @@ $ cd api-server-nodejs
6261> ** Step 2** - Install dependencies via ` Yarn `
6362
6463``` bash
64+ $ npm i
65+ // OR
6566$ yarn
6667```
6768
7071> ** Step 3** - Run the SQLite migration via TypeORM
7172
7273```
74+ $ npm run typeorm migration:run
75+ // OR
7376$ yarn typeorm migration:run
7477```
7578
@@ -78,6 +81,8 @@ $ yarn typeorm migration:run
7881> ** Step 4** - Start the API server (development mode)
7982
8083``` bash
84+ $ npm run dev
85+ // OR
8186$ yarn dev
8287```
8388
You can’t perform that action at this time.
0 commit comments