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: 9 months ago
JSON representation
Building Vue and Node Apps with Authentication
- Host: GitHub
- URL: https://github.com/normalhuman01/authentication-node_vue
- Owner: normalhuman01
- License: mit
- Created: 2023-12-16T04:05:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-16T04:08:31.000Z (about 2 years ago)
- Last Synced: 2025-02-01T12:45:31.873Z (11 months ago)
- Topics: authentication, linkedin-learning, node, vue
- Language: Vue
- Homepage:
- Size: 317 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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
```