https://github.com/pblnahu1/AuthenticationWithReactMySQL
Login con React y NodeJS. Para el Front uso Axios. Para el Back uso Express, CORS y MySQL
https://github.com/pblnahu1/AuthenticationWithReactMySQL
axios cors expressjs javascript mysql nodejs react
Last synced: 29 days ago
JSON representation
Login con React y NodeJS. Para el Front uso Axios. Para el Back uso Express, CORS y MySQL
- Host: GitHub
- URL: https://github.com/pblnahu1/AuthenticationWithReactMySQL
- Owner: pblnahu1
- Created: 2024-08-24T20:05:04.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-24T20:11:28.000Z (almost 2 years ago)
- Last Synced: 2025-01-02T22:46:08.661Z (over 1 year ago)
- Topics: axios, cors, expressjs, javascript, mysql, nodejs, react
- Language: JavaScript
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instalaciones
1. Instalá Node JS
### Frontend
1. `mkdir login-react-mysql-node`
2. `cd login-react-mysql-node`
3. `npm create vite@latest`
4. `name: frontend`
5. `cd frontend`
6. `npm install`
7. `npm run dev`
8. `npm install axios`
### Backend
1. `cd login-react-mysql-node`
2. `mkdir backend`
3. `cd backend`
4. `npm init -y`
5. `npm install express`
6. `npm install mysql`
7. `npm install cors`
### Para Ejecutar
1. Para el Frontend tener en ejecución con `npm run dev`
2. Para el Backend ejecutar `node server.js`