“Cómo iniciar el servidor JSON” Código de respuesta

Cómo iniciar el servidor JSON

json-server --watch db.json
Disgusted Dragonfly

Cómo iniciar el servidor JSON

json-server --watch db.json
Yucky Yak

servidor json

npm install -g json-server
Disgusted Dragonfly

servidor json

{
  "posts": [
    { "id": 1, "title": "json-server", "author": "typicode" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ],
  "profile": { "name": "typicode" }
}
Disgusted Dragonfly

Código de inicio del servidor JSON

[
  {
    "id": 1,
    "title": "json-server",
    "author": "typicode"
  }
]
Brave Bat

Cómo crear un servidor JSON

const jsonServer = require('json-server')
const server = jsonServer.create()
const router = jsonServer.router('db.json')
const middlewares = jsonServer.defaults()
const port = process.env.PORT || 3000

server.use(middlewares)
server.use(router)

server.listen(port)
Anthony Smith

Respuestas similares a “Cómo iniciar el servidor JSON”

Preguntas similares a “Cómo iniciar el servidor JSON”

Más respuestas relacionadas con “Cómo iniciar el servidor JSON” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código