File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# ⚙️ Setup
2-
32## eslint installation
43``` bash
54npm i eslint @eslint/js prettier eslint-config-prettier eslint-plugin-prettier -D
65```
7-
86## drizzle installation
97``` bash
108npm i @neondatabase/serverless drizzle-orm
119```
12-
1310## drizzle kit installation
1411``` bash
1512npm i -D drizzle-kit
1613```
17-
1814## winston installation
1915``` bash
2016npm i winston
2117```
22-
2318## helmet installation
2419``` bash
2520npm i helmet
2621```
27-
2822## morgan installation
2923``` bash
3024npm i morgan
3125```
32-
3326## cors. cookie-parser installation
3427``` bash
3528npm i cors cookie-parser
3629```
37-
3830## jsonwebtoken and bcrypt installation
3931``` bash
4032npm i jsonwebtoken bcrypt
@@ -48,6 +40,20 @@ npm run db:generate
4840npm run db:migrate
4941```
5042
43+ # ⚙️ testing
44+ ## jest installation
45+ ``` bash
46+ npm i jest @types/jest -D
47+ ```
48+ ## supertest installation
49+ ``` bash
50+ npm i supertest @types/supertest -D
51+ ```
52+ ## jest configuration
53+ ``` bash
54+ npx jest --init
55+ ```
56+
5157# ⭐ run this project
5258## dev env
5359``` bash
You can’t perform that action at this time.
0 commit comments