-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
70 lines (57 loc) · 1.62 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
First Class commands:
Set-ExecutionPolicy Bypass -Scope Process
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco
choco /?
cinst nodejs-lts
Get-ExecutionPolicy
cinst nodejs-lts
node -v
npm -v
md backend
cd .\backend\
npm init -y
npm install express
node .\index.js
cd ..
npx create-react-app frontend
cd .\frontend\
npm start
node .\index.js
Second class commands:
npm install nodemon -D
npm start
npm install knex
npm install sqlite3
npx knex init
npm start
npx knex migrate:make create_ongs
npx knex migrate:latest
npx knex migrate:make create_incidents
npx knex migrate:latest
npm install cors
Third class commands:
npm install react-icons
npm install react-router-dom
npm install axios
Fouth class commands
npm install -g expo-cli
npm install -g expo-cli (2 times, first time i got node-gyp erro saying tha I don't have python)
expo init mobile
cd mobile
yarn start (error: not installed)
npm start
npm install @react-navigation/native
expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
npm install @react-navigation/stack
expo install expo-constants
expo install expo-mail-composer
npm install axios
npm install intl
Fifth class commands:
npm install celebrate
npm install jest -D
npx jest --init
npm test
npm install cross-env
npm install supertest -D