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] .97 /reno/mod.ts )
6
+ [ ![ Deno doc
] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/[email protected] .98 /reno/mod.ts )
7
7
8
8
Reno is a thin routing library designed to sit on top of
9
9
[ Deno] ( https://deno.land/ ) 's [ standard HTTP module] ( https://deno.land/std/http ) .
@@ -20,7 +20,7 @@ Reno is a thin routing library designed to sit on top of
20
20
## Overview
21
21
22
22
``` tsx
23
- import { serve } from " https://deno.land/std@0.187 .0/http/server.ts" ;
23
+ import { serve } from " https://deno.land/std@0.188 .0/http/server.ts" ;
24
24
25
25
import {
26
26
AugmentedRequest ,
@@ -29,7 +29,7 @@ import {
29
29
jsonResponse ,
30
30
MissingRouteError ,
31
31
streamResponse ,
32
- }
from " https://deno.land/x/[email protected] .97 /reno/mod.ts" ;
32
+ }
from " https://deno.land/x/[email protected] .98 /reno/mod.ts" ;
33
33
34
34
const PORT = 8000 ;
35
35
@@ -96,7 +96,7 @@ testing Reno services a breeze:
96
96
import {
97
97
assertResponsesAreEqual ,
98
98
jsonResponse ,
99
- }
from " https://deno.land/x/[email protected] .97 /reno/mod.ts" ;
99
+ }
from " https://deno.land/x/[email protected] .98 /reno/mod.ts" ;
100
100
import { createRonSwansonQuoteHandler } from " ./routes.ts" ;
101
101
102
102
const createFetchStub = (response : string []) =>
@@ -191,7 +191,7 @@ import {
191
191
AugmentedRequest ,
192
192
createRouteMap ,
193
193
RouteHandler ,
194
- }
from " https://deno.land/x/[email protected] .97 /reno/mod.ts" ;
194
+ }
from " https://deno.land/x/[email protected] .98 /reno/mod.ts" ;
195
195
196
196
import isValidAPIKey from " ./api_keys.ts" ;
197
197
@@ -256,15 +256,15 @@ Deno.test("/ should return the expected response", async () => {
256
256
## Example Apps
257
257
258
258
As well as the
259
- [ example app found in this repo] ( https://github.com/reno-router/reno/tree/v2.0.97 /example ) ,
259
+ [ example app found in this repo] ( https://github.com/reno-router/reno/tree/v2.0.98 /example ) ,
260
260
which is targetted by the end-to-end test suite, there is a
261
261
[ standalone repository for a blog microservice] ( https://github.com/reno-router/blog-microservice )
262
262
built with Deno, Reno, PostgreSQL, and Docker.
263
263
264
264
## API Documentation
265
265
266
266
Consult
267
- [ Reno's entry on the Deno Doc website
] ( https://doc.deno.land/https/deno.land/x/[email protected] .97 /reno/mod.ts )
267
+ [ Reno's entry on the Deno Doc website
] ( https://doc.deno.land/https/deno.land/x/[email protected] .98 /reno/mod.ts )
268
268
for comprehensive documentation on Reno's API.
269
269
270
270
## Local Development
0 commit comments