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

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

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`