1.0.0-rc.1 • Published 1 year ago

@colstonjs/core v1.0.0-rc.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

🍥 Colstonjs

Colstonjs is an open-source, non-opinionated web framework built on Bunjs for the modern web. It is fast, simple and scalable.

import Colston, { Context } from '@colstonjs/core';

const app: Colston = new Colston();
app.get('/', function(ctx: Context) {
  return ctx.status(200).text('Hello Colstonjs');
});

app.listen(8000, function() { console.log(':listening'); });

See the docs page for a complete guide on how to start building fast, reliable and scalable web apps. Or view the source here