Skip to content

JkDevArg/APIRest-NodeJS-MySQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APIRest-NodeJS-MySQL

NodeJS + CRUD + API-Rest + MySQL

Instalar Modulos

npm install

Importar Base de Datos

nodejs.sql

Editar con tu editor de código favorito

server.js

const opcionesDb = {
    host: 'localhost',
    port: 3306,
    user: 'root',
    password: '',
    database: 'nodejs'
}

Iniciar Servidor

npm run start

Hacer pruebas

GET http://localhost:9000/api

POST http://localhost:9000/api HTTP/1.1
Content-Type: application/json

{
    "titulo": "Libro 5",
    "autor": "JCreative",
    "edicion": 2022
}

PUT http://localhost:9000/api/1 HTTP/1.1
Content-Type: application/json

{
    "titulo": "Libro 5",
    "autor": "JCreative 2",
    "edicion": 2021
}

DELETE http://localhost:9000/api/5 HTTP/1.1

About

NodeJS + CRUD + API-Rest + MySQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published