2.1.0 • Published 8 years ago

gerkon v2.1.0

Weekly downloads
3
License
WTFPL
Repository
github
Last release
8 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

8 years ago

2.0.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.0.1

9 years ago