https://github.com/lucasrmagalhaes/authentication-node_vue
Building Vue and Node Apps with Authentication
https://github.com/lucasrmagalhaes/authentication-node_vue
authentication linkedin-learning node vue
Last synced: 3 months ago
JSON representation
Building Vue and Node Apps with Authentication
- Host: GitHub
- URL: https://github.com/lucasrmagalhaes/authentication-node_vue
- Owner: lucasrmagalhaes
- License: mit
- Created: 2022-06-30T20:11:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T02:47:09.000Z (about 2 years ago)
- Last Synced: 2025-01-11T12:22:32.782Z (4 months ago)
- Topics: authentication, linkedin-learning, node, vue
- Language: Vue
- Homepage:
- Size: 1.99 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```