3
3
![ Reno logo] ( https://raw.githubusercontent.com/reno-router/reno/master/logo/reno-500.png )
4
4
5
5
[ ![ Build status] ( https://github.com/reno-router/reno/workflows/CI/badge.svg )] ( https://github.com/reno-router/reno/actions )
6
- [ ![ Deno doc
] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/[email protected] .53 /reno/mod.ts )
6
+ [ ![ Deno doc
] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/[email protected] .54 /reno/mod.ts )
7
7
[ ![ Published on Nest.land] ( https://nest.land/badge.svg )] ( https://nest.land/package/reno )
8
8
9
9
Reno is a thin routing library designed to sit on top of
@@ -21,7 +21,7 @@ Reno is a thin routing library designed to sit on top of
21
21
## Overview
22
22
23
23
``` tsx
24
- import { serve } from " https://deno.land/std@0.151 .0/http/server.ts" ;
24
+ import { serve } from " https://deno.land/std@0.152 .0/http/server.ts" ;
25
25
26
26
import {
27
27
AugmentedRequest ,
@@ -30,10 +30,10 @@ import {
30
30
jsonResponse ,
31
31
MissingRouteError ,
32
32
streamResponse ,
33
- }
from " https://deno.land/x/[email protected] .53 /reno/mod.ts" ;
33
+ }
from " https://deno.land/x/[email protected] .54 /reno/mod.ts" ;
34
34
35
35
/* Alternatively, you can import Reno from nest.land:
36
- * import { ... } from "https://x.nest.land/[email protected] .53 /reno/mod.ts";
36
+ * import { ... } from "https://x.nest.land/[email protected] .54 /reno/mod.ts";
37
37
*/
38
38
39
39
const PORT = 8000 ;
@@ -101,7 +101,7 @@ testing Reno services a breeze:
101
101
import {
102
102
assertResponsesAreEqual ,
103
103
jsonResponse ,
104
- }
from " https://deno.land/x/[email protected] .53 /reno/mod.ts" ;
104
+ }
from " https://deno.land/x/[email protected] .54 /reno/mod.ts" ;
105
105
import { createRonSwansonQuoteHandler } from " ./routes.ts" ;
106
106
107
107
const createFetchStub = (response : string []) =>
@@ -196,7 +196,7 @@ import {
196
196
AugmentedRequest ,
197
197
createRouteMap ,
198
198
RouteHandler ,
199
- }
from " https://deno.land/x/[email protected] .53 /reno/mod.ts" ;
199
+ }
from " https://deno.land/x/[email protected] .54 /reno/mod.ts" ;
200
200
201
201
import isValidAPIKey from " ./api_keys.ts" ;
202
202
@@ -261,15 +261,15 @@ Deno.test("/ should return the expected response", async () => {
261
261
## Example Apps
262
262
263
263
As well as the
264
- [ example app found in this repo] ( https://github.com/reno-router/reno/tree/v2.0.53 /example ) ,
264
+ [ example app found in this repo] ( https://github.com/reno-router/reno/tree/v2.0.54 /example ) ,
265
265
which is targetted by the end-to-end test suite, there is a
266
266
[ standalone repository for a blog microservice] ( https://github.com/reno-router/blog-microservice )
267
267
built with Deno, Reno, PostgreSQL, and Docker.
268
268
269
269
## API Documentation
270
270
271
271
Consult
272
- [ Reno's entry on the Deno Doc website
] ( https://doc.deno.land/https/deno.land/x/[email protected] .53 /reno/mod.ts )
272
+ [ Reno's entry on the Deno Doc website
] ( https://doc.deno.land/https/deno.land/x/[email protected] .54 /reno/mod.ts )
273
273
for comprehensive documentation on Reno's API.
274
274
275
275
## Local Development
0 commit comments