2.1.0 • Published 9 years ago

gerkon v2.1.0

Weekly downloads
3
License
WTFPL
Repository
github
Last release
9 years ago

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);
2.1.0

9 years ago

2.0.0

9 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago

0.4.1

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.0.1

10 years ago