Repository
Current version released
4 years ago
Rute
A Simple Router for Deno
Prerequisites
- deno 1.0.0-rc2
Releases
0.8
- Rute for Deno v0.41.00.9
- Rute for Deno v1.0.0-rc2
Branches
master
- Recent Release0.x
- Development branch for version 0.x
Installation
import { Server, Request, Response, Middleware, Next } from "https://raw.githubusercontent.com/jabernardo/rute/{release}/mod.ts";
Run this example
deno run --allow-net --allow-read https://raw.githubusercontent.com/jabernardo/rute/master/example/basic/app.ts
Hello World!
import { Server, Request, Response } from "https://raw.githubusercontent.com/jabernardo/rute/master/mod.ts";
const app: Server = new Server();
app.get("/", (req: Request, res: Response) => {
res.set({"message": "Hello World!"});
});
app.listen({ port: 8000 });
Built-in await/async support!
/**
* Index page
*/
app.all("/", async (req: Request, res: Response) => {
let data = await fetch("https://hacker-news.firebaseio.com/v0/item/2921983.json?print=pretty");
let json = await data.json();
console.log(json);
res.set(json);
});
Want to combine your apps?
import { app as secondApp } from "../second_app/app.ts";
/**
* Root application
*
* path: /
*/
const app: Server = new Server("multi_app");
/**
* Second application
*
* path: /second
*/
app.use(secondApp.rebase("second"));
Contibuting to Rute!
To contribute to Rute! Make sure to give a star and forked this repository.
Alternatively see the GitHub documentation on creating a pull request.
License
The Rute
is open-sourced software licensed under the MIT license.