Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/normalhuman01/authentication-node_vue

Building Vue and Node Apps with Authentication
https://github.com/normalhuman01/authentication-node_vue

authentication linkedin-learning node vue

Last synced: about 1 month ago
JSON representation

Building Vue and Node Apps with Authentication

Awesome Lists containing this project

README

        

***Vue.JS 2 Install***
```
vue create frontend
```

***Install vuetify***
```
vue add vuetify
```

***Remove eslint***
```
npm remove @vue/cli-plugin-eslint
```

***Init***
```
npm init -y
```

***express Install***
```
npm install express --save
```

***Runing server.js***
```
node server.js
```

***localhost***
```
http://localhost:3000
```

***Back-end - Nodemon Install***
```
npm install -g nodemon
```

***Front-end - Axios Install***
```
npm install axios --save
```

***Back-end: Cors Install***
```
npm install cors
```

***Back-end: body-parser Install***
```
npm install body-parser
```

***Front-end: Vuex Install***
```
"vuex": "<4"
```

***Front-end: Vue Router Install***
```
"vue-router": "<4"
```

***jsonwebtoken Install***
```
npm install jsonwebtoken
```