UNPKG

@faisalrmdhn08/allin-cli

Version:

A modern full-stack CLI tool based on Typescript designed to accelerate your app development process — setup your entire stack in one seamless command.

13 lines (9 loc) 226 B
import koa from 'koa'; const app = new koa(); const port = 3000; app.use(async (context) => { context.body = 'Hello, Koa!'; }); app.listen(port, () => { console.log(`Server is running at http://localhost:${port}`); });