diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-04-22 06:57:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 06:57:02 +1000 |
commit | 21372d7b25141d5edb662d87e5842744ca23e8b5 (patch) | |
tree | 663e338a8669f81ea177f0bc728c3d62e537555b /docs/runtime.md | |
parent | 3b78f6c4493093701660bba496d87342ffbc08d7 (diff) |
docs: document Deno's HTTP Server API (#10280)
Co-authored-by: Satya Rohith <me@satyarohith.com>
Diffstat (limited to 'docs/runtime.md')
-rw-r--r-- | docs/runtime.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime.md b/docs/runtime.md index 8d9a8c5c6..2ff0829ed 100644 --- a/docs/runtime.md +++ b/docs/runtime.md @@ -15,8 +15,8 @@ For more details, view the chapter on ## `Deno` global All APIs that are not web standard are contained in the global `Deno` namespace. -It has the APIs for reading from files, opening TCP sockets, and executing -subprocesses, etc. +It has the APIs for reading from files, opening TCP sockets, serving HTTP, and +executing subprocesses, etc. The TypeScript definitions for the Deno namespaces can be found in the [`lib.deno.ns.d.ts`](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/dts/lib.deno.ns.d.ts) |