-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
105 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ import { | |
json, | ||
opine, | ||
urlencoded, | ||
} from "https://deno.land/x/opine@2.2.0/mod.ts"; | ||
} from "https://deno.land/x/opine@2.3.0/mod.ts"; | ||
|
||
const app = opine(); | ||
|
||
|
@@ -118,7 +118,7 @@ The following example shows how to implement your own simple body-parsing | |
middleware to transform `req.body` into a raw string: | ||
|
||
```ts | ||
import opine from "https://deno.land/x/opine@2.2.0/mod.ts"; | ||
import opine from "https://deno.land/x/opine@2.3.0/mod.ts"; | ||
|
||
import { readAll } from "https://deno.land/[email protected]/streams/conversion.ts"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: denolib/setup-deno@v2 | ||
with: | ||
deno-version: 1.21.1 | ||
deno-version: 1.25.0 | ||
- run: deno install -A -f --unstable -n eggs https://x.nest.land/[email protected]/eggs.ts | ||
- run: | | ||
export PATH="/home/runner/.deno/bin:$PATH" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
export { Server } from "https://deno.land/[email protected]/http/server.ts"; | ||
export type { ConnInfo } from "https://deno.land/[email protected]/http/server.ts"; | ||
export { | ||
serve, | ||
Server, | ||
serveTls, | ||
} from "https://deno.land/[email protected]/http/server.ts"; | ||
export type { ConnInfo } from "https://deno.land/[email protected]/http/server.ts"; | ||
export { | ||
Status, | ||
STATUS_TEXT, | ||
} from "https://deno.land/std@0.137.0/http/http_status.ts"; | ||
} from "https://deno.land/std@0.153.0/http/http_status.ts"; | ||
export { | ||
deleteCookie, | ||
setCookie, | ||
} from "https://deno.land/std@0.137.0/http/cookie.ts"; | ||
export type { Cookie } from "https://deno.land/std@0.137.0/http/cookie.ts"; | ||
} from "https://deno.land/std@0.153.0/http/cookie.ts"; | ||
export type { Cookie } from "https://deno.land/std@0.153.0/http/cookie.ts"; | ||
export { | ||
basename, | ||
dirname, | ||
|
@@ -19,22 +23,22 @@ export { | |
normalize, | ||
resolve, | ||
sep, | ||
} from "https://deno.land/std@0.137.0/path/mod.ts"; | ||
export { setImmediate } from "https://deno.land/std@0.133.0/node/timers.ts"; | ||
export { parse } from "https://deno.land/std@0.133.0/node/querystring.ts"; | ||
export { default as EventEmitter } from "https://deno.land/std@0.133.0/node/events.ts"; | ||
export { Sha1 } from "https://deno.land/std@0.137.0/hash/sha1.ts"; | ||
} from "https://deno.land/std@0.153.0/path/mod.ts"; | ||
export { setImmediate } from "https://deno.land/std@0.153.0/node/timers.ts"; | ||
export { parse } from "https://deno.land/std@0.153.0/node/querystring.ts"; | ||
export { default as EventEmitter } from "https://deno.land/std@0.153.0/node/events.ts"; | ||
export { Sha1 } from "https://deno.land/std@0.153.0/hash/sha1.ts"; | ||
export { | ||
readableStreamFromReader, | ||
readAll, | ||
readerFromStreamReader, | ||
} from "https://deno.land/std@0.137.0/streams/conversion.ts"; | ||
} from "https://deno.land/std@0.153.0/streams/conversion.ts"; | ||
|
||
export { | ||
charset, | ||
contentType, | ||
lookup, | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
} from "https://deno.land/x/[email protected].3/mod.ts"; | ||
export { Accepts } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export { | ||
hasBody, | ||
|
Oops, something went wrong.