routes
Introduction
Req/Res
Return
const { createRoute } = require('light');
const { route } = createRoute('name'); // specify a name for the route
module.exports = route(async (req, res) => {
// req and res variables are available here
return {
hello: 'world',
};
// or
return 'hello world';
});Send
Last updated
Was this helpful?