Fast, simple and lightweight Web/API framework for Bunjs 🚀.
import Colston, { Context } from '@colstonjs/core';
const app = new Colston();
app.get('/', (ctx: Context) => {
return ctx.status(200).text('Hello colstonjs');
});
app.listen(8000, () => console.log(`:listening`));
This license applied to the whole project, see LICENSE