gerkon

Web applications framework

Usage no npm install needed!

<script type="module">
  import gerkon from 'https://cdn.skypack.dev/gerkon';
</script>

README

Logo

Build Status Coverage Status Node version

const Gerkon = require('gerkon');
const app = new Gerkon();

app.route('/', (req, res) => {
        res.send('Index page');
    })
    .route('/hello{world}', (req, res) => {
        res.send('Hello world!');
    })
    .route('*', (req, res) => {
        res.sendCode(404, 'not found');
    })
    .listen(8080);