diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-07-20 16:25:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 16:25:36 +0200 |
commit | d744c0c6d9a557bbaa2a23571ffb3acabf19c35a (patch) | |
tree | 6f7fb8a71b786e79c48f4b2c11a5a9ca988717e8 /docs/runtime.md | |
parent | 9b9becf1ae256b645e37a7eecf3441f3ae4b8ea5 (diff) |
chore: move docs to separate repository
Diffstat (limited to 'docs/runtime.md')
-rw-r--r-- | docs/runtime.md | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/runtime.md b/docs/runtime.md deleted file mode 100644 index 4ae2315c4..000000000 --- a/docs/runtime.md +++ /dev/null @@ -1,25 +0,0 @@ -# Runtime - -Documentation for all runtime functions (Web APIs + `Deno` global) can be found -on [`doc.deno.land`](https://doc.deno.land/builtin/stable). - -## Web Platform APIs - -For APIs where a web standard already exists, like `fetch` for HTTP requests, -Deno uses these rather than inventing a new proprietary API. - -For more details, view the chapter on -[Web Platform APIs](./runtime/web_platform_apis.md). - -## `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, 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) -file. - -The documentation for all of the Deno specific APIs can be found on -[doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/main/cli/dts/lib.deno.ns.d.ts). |