How routing works
app.get('/about', (ctx) => {
ctx.send('About us');
});Related Posts

Software
In this post, we’ll build a simple RESTful API using Express.js. We’ll create a server that handles basic CRUD operations for a todo list.
app.get('/about', (ctx) => {
ctx.send('About us');
});
In this post, we’ll build a simple RESTful API using Express.js. We’ll create a server that handles basic CRUD operations for a todo list.