Skip to content

bristol-svr/core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🍥 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