-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.txt
53 lines (42 loc) · 985 Bytes
/
install.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
install.txt
# ASDF AND NODEJS INSTALL
apt install curl git
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.9.0
nano ~/.bashrc
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
asdf plugin-list
asdf plugin-add nodejs https://github.com/asdf-vm/asdf-nodejs.git
asdf plugin-list
asdf list-all nodejs
asdf install nodejs 8.11.1
asdf global nodejs 8.11.1
node -v
asdf install nodejs 8.11.1
asdf global nodejs 8.11.1
node -v
npm -v
npx -v
# EXPRESS INSTALLATION
npm init
// package.json created
npm install [email protected] --save
nano .gitignore
node_modules
npm install //reinstall modules folder
# NODEMON INSTALLATION
npm install [email protected] -g
// -g (global)
# CONSIGN INSTALLATION
npm install [email protected] --save
// POSTMAN INSTALLATION
https://www.postman.com/downloads/
POST
Body - x-www-form-urlencoded
name
email
password
// BODY PARSER INSTALLATION
npm install [email protected] --save
// nedb installation
npm install [email protected] --save