📜  next-connect 比 express 更好的替代方案(比 express 更快) - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:15.859000             🧑  作者: Mango

代码示例1
import nextConnect from 'next-connect'const handler = nextConnect(); //  use middlewarehandler.use(someMiddleware()); //  response to GEThandler.get(function (req, res) {    res.send('Hello world');}); //  response to POSThandler.post(function (req, res) {    res.json('Hi there');}); //  export using handler.export()export default handler.export();