Repository
Current version released
4 years ago
Rute
A Simple Router for Deno (https://deno.land/x/rute)
Prerequisites
- deno 1.0.0
Releases
0.10
- Rute for Deno v1.0.0-rc2 (use of registry https://deno.land/x/rute/)0.11
- Rute for Deno v1.0.00.12
- Optional middlewares
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!
Examples
We have few examples provided, that could be found here.
Wiki
Our wiki is located here
Contibuting to Rute!
To contribute to Rute! Make sure to give a star and forked this repository. Current development branch is 0.x
, so make sure to checkout it.
Alternatively see the GitHub documentation on creating a pull request.
License
The Rute
is open-sourced software licensed under the MIT license.