mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Update various links to deno_std (#3096)
This commit is contained in:
parent
97d8498d46
commit
4b7204babe
3 changed files with 7 additions and 20 deletions
|
@ -137,7 +137,7 @@ pub fn create_cli_app<'a, 'b>() -> App<'a, 'b> {
|
|||
.long_about("A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio.
|
||||
|
||||
Docs: https://deno.land/manual.html
|
||||
Modules: https://github.com/denoland/deno_std
|
||||
Modules: https://deno.land/x/
|
||||
Bugs: https://github.com/denoland/deno/issues
|
||||
|
||||
To run the REPL:
|
||||
|
|
|
@ -36,19 +36,6 @@
|
|||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><a href="https://github.com/denoland/deno_std">deno_std</a></th>
|
||||
<td colspan="2">
|
||||
<a
|
||||
class="badge"
|
||||
href="https://dev.azure.com/denoland/deno_std/_build?definitionId=2"
|
||||
>
|
||||
<img
|
||||
src="https://dev.azure.com/denoland/deno_std/_apis/build/status/denoland.deno_std?branchName=master"
|
||||
/>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
<a href="https://github.com/denoland/deno_install">deno_install</a>
|
||||
|
@ -125,7 +112,7 @@ window.onload = async () => {
|
|||
<p><a href="https://deno.land/typedoc/">API Reference</a></p>
|
||||
|
||||
<p>
|
||||
<a href="https://github.com/denoland/deno_std">Standard Modules</a>
|
||||
<a href="https://deno.land/std/">Standard Modules</a>
|
||||
</p>
|
||||
|
||||
<p><a href="style_guide.html">Style Guide</a></p>
|
||||
|
|
|
@ -26,8 +26,9 @@ standard browser-compatible protocol for loading modules: URLs.
|
|||
Deno provides security guarantees about how programs can access your system with
|
||||
the default being the most restrictive secure sandbox.
|
||||
|
||||
Deno provides <a href="https://github.com/denoland/deno_std">a set of reviewed
|
||||
(audited) standard modules</a> that are guaranteed to work with Deno.
|
||||
Deno provides <a href="https://github.com/denoland/deno/tree/master/std">a set
|
||||
of reviewed (audited) standard modules</a> that are guaranteed to work with
|
||||
Deno.
|
||||
|
||||
### Goals
|
||||
|
||||
|
@ -71,7 +72,6 @@ Deno provides <a href="https://github.com/denoland/deno_std">a set of reviewed
|
|||
- bundling (`deno bundle`)
|
||||
- runtime type info (`deno types`)
|
||||
- test runner (`deno test`)
|
||||
[not yet](https://github.com/denoland/deno_std/issues/193)
|
||||
- command-line debugger (`--debug`)
|
||||
[not yet](https://github.com/denoland/deno/issues/1120)
|
||||
- linter (`deno lint`) [not yet](https://github.com/denoland/deno/issues/1880)
|
||||
|
@ -633,7 +633,7 @@ deno
|
|||
A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio.
|
||||
|
||||
Docs: https://deno.land/manual.html
|
||||
Modules: https://github.com/denoland/deno_std
|
||||
Modules: https://deno.land/x/
|
||||
Bugs: https://github.com/denoland/deno/issues
|
||||
|
||||
To run the REPL:
|
||||
|
@ -991,7 +991,7 @@ defined in `imported.ts`.
|
|||
| Syscalls | Ops |
|
||||
| File descriptors (fd) | [Resource ids (rid)](#resources) |
|
||||
| Scheduler | Tokio |
|
||||
| Userland: libc++ / glib / boost | deno_std |
|
||||
| Userland: libc++ / glib / boost | https://deno.land/std/ |
|
||||
| /proc/\$\$/stat | [Deno.metrics()](#metrics) |
|
||||
| man pages | deno types |
|
||||
|
||||
|
|
Loading…
Reference in a new issue