pmu-tech / stub-server

Stub server for REST APIs
MIT License
12 stars 2 forks source link

Document JSON body parser usage #27

Closed makavelithadon closed 2 years ago

makavelithadon commented 3 years ago

Would be nice to update examples with app.use(express.json())

tkrotoff commented 3 years ago

With https://github.com/pmu-tech/stub-server/pull/32 the Next.js example now contains

server.use(express.json());
server.use(cors());