Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/normalhuman01/authentication-node_vue
- Owner: normalhuman01
- License: mit
- Created: 2023-12-16T04:05:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-16T04:08:31.000Z (about 1 year ago)
- Last Synced: 2023-12-16T05:33:45.397Z (about 1 year 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
```