Ash.js
A stylish framework for Deno! :sauropod:
Example
import { Route, start } from 'https://deno.land/x/ash/mod.ts';
Route.get('/{name}', function(name: string) {
console.log('Incoming request!');
return `Hello, ${name}!`;
});
Route.get('*', function() {
return `Sorry, the hamsters couldn't find that path!`;
});
start(80);