Repository
Current version released
4 years ago
Rute
A Simple Router for Deno (https://deno.land/x/rute)
Prerequisites
- deno 1.0.0-rc2
Releases
0.8
- Rute for Deno v0.41.00.9
- Rute for Deno v1.0.0-rc20.10
- Rute for Deno v1.0.0-rc2 (use of registry https://deno.land/x/rute/)0.11
- Rute for Deno v1.0.0
Branches
master
- Recent Release0.x
- Development branch for version 0.x
Installation
import { Server, Request, Response, Middleware, Next } from "https://deno.land/x/rute/mod.ts";
Run this example
deno run --allow-net --allow-read "https://deno.land/x/rute/example/basic/app.ts"
Hello World!
import { Server, Request, Response } from "https://deno.land/x/rute/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"));
Learn more!
Our wiki is located here
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.