2019-02-11 17:41:13 -05:00
|
|
|
# Deno Manual
|
|
|
|
|
2019-10-24 17:58:57 -04:00
|
|
|
## Table of Contents
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
## Project Status / Disclaimer
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
**A word of caution: Deno is very much under development.**
|
|
|
|
|
|
|
|
We encourage brave early adopters, but expect bugs large and small. The API is
|
|
|
|
subject to change without notice.
|
|
|
|
[Bug reports](https://github.com/denoland/deno/issues) do help!
|
|
|
|
|
|
|
|
We are
|
|
|
|
[actively working towards 1.0](https://github.com/denoland/deno/issues/2473),
|
|
|
|
but there is no date guarantee.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
Deno is a JavaScript/TypeScript runtime with secure defaults and a great
|
|
|
|
developer experience.
|
|
|
|
|
|
|
|
It's built on V8, Rust, and Tokio.
|
|
|
|
|
|
|
|
### Feature Highlights
|
|
|
|
|
|
|
|
- Secure by default. No file, network, or environment access (unless explicitly
|
|
|
|
enabled).
|
|
|
|
- Supports TypeScript out of the box.
|
|
|
|
- Ships a single executable (`deno`).
|
|
|
|
- Has built in utilities like a dependency inspector (`deno info`) and a code
|
|
|
|
formatter (`deno fmt`).
|
|
|
|
- Has
|
|
|
|
[a set of reviewed (audited) standard modules](https://github.com/denoland/deno/tree/master/std)
|
|
|
|
that are guaranteed to work with Deno.
|
|
|
|
- Scripts can be bundled into a single javascript file.
|
2019-03-05 00:01:32 -05:00
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### Philosophy
|
|
|
|
|
2019-02-12 23:54:08 -05:00
|
|
|
Deno aims to be a productive and secure scripting environment for the modern
|
|
|
|
programmer.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-07-17 10:23:07 -04:00
|
|
|
Deno will always be distributed as a single executable. Given a URL to a Deno
|
|
|
|
program, it is runnable with nothing more than
|
|
|
|
[the 10 megabyte zipped executable](https://github.com/denoland/deno/releases).
|
2019-02-11 17:41:13 -05:00
|
|
|
Deno explicitly takes on the role of both runtime and package manager. It uses a
|
|
|
|
standard browser-compatible protocol for loading modules: URLs.
|
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
Among other things, Deno is a great replacement for utility scripts that may
|
|
|
|
have been historically written with bash or python.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-02-12 23:54:08 -05:00
|
|
|
### Goals
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
- Only ship a single executable (`deno`).
|
|
|
|
- Provide Secure Defaults
|
|
|
|
- Unless specifically allowed, scripts can't access files, the environment, or
|
|
|
|
the network.
|
2019-02-12 23:54:08 -05:00
|
|
|
- Browser compatible: The subset of Deno programs which are written completely
|
|
|
|
in JavaScript and do not use the global `Deno` namespace (or feature test for
|
|
|
|
it), ought to also be able to be run in a modern web browser without change.
|
2019-10-21 11:45:52 -04:00
|
|
|
- Provide built-in tooling like unit testing, code formatting, and linting to
|
|
|
|
improve developer experience.
|
|
|
|
- Does not leak V8 concepts into user land.
|
|
|
|
- Be able to serve HTTP efficiently
|
2019-02-12 23:54:08 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
### Comparison to Node.js
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
- Deno does not use `npm`
|
|
|
|
- It uses modules referenced as URLs or file paths
|
|
|
|
- Deno does not use `package.json` in its module resolution algorithm.
|
|
|
|
- All async actions in Deno return a promise. Thus Deno provides different APIs
|
|
|
|
than Node.
|
|
|
|
- Deno requires explicit permissions for file, network, and environment access.
|
|
|
|
- Deno always dies on uncaught errors.
|
|
|
|
- Uses "ES Modules" and does not support `require()`. Third party modules are
|
|
|
|
imported via URLs:
|
2019-03-05 00:01:32 -05:00
|
|
|
|
2020-01-15 23:13:50 -05:00
|
|
|
```javascript
|
|
|
|
import * as log from "https://deno.land/std/log/mod.ts";
|
|
|
|
```
|
2019-09-02 17:53:40 -04:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
### Other key behaviors
|
2019-03-05 00:01:32 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
- Remote code is fetched and cached on first execution, and never updated until
|
|
|
|
the code is run with the `--reload` flag. (So, this will still work on an
|
|
|
|
airplane.)
|
|
|
|
- Modules/files loaded from remote URLs are intended to be immutable and
|
|
|
|
cacheable.
|
2019-02-12 23:54:08 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
## Built-in Deno Utilities / Commands
|
2019-02-12 23:54:08 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
<!-- prettier incorrectly moves the coming soon links to new lines -->
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-10-21 11:45:52 -04:00
|
|
|
- dependency inspector (`deno info`)
|
|
|
|
- code formatter (`deno fmt`)
|
|
|
|
- bundling (`deno bundle`)
|
|
|
|
- runtime type info (`deno types`)
|
|
|
|
- test runner (`deno test`)
|
|
|
|
- command-line debugger (`--debug`) [coming soon](https://github.com/denoland/deno/issues/1120)
|
|
|
|
- linter (`deno lint`) [coming soon](https://github.com/denoland/deno/issues/1880)
|
|
|
|
|
|
|
|
<!-- prettier-ignore-end -->
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
Deno works on OSX, Linux, and Windows. Deno is a single binary executable. It
|
|
|
|
has no external dependencies.
|
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
### Download and Install
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
[deno_install](https://github.com/denoland/deno_install) provides convenience
|
|
|
|
scripts to download and install the binary.
|
|
|
|
|
|
|
|
Using Shell:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-23 20:37:34 -04:00
|
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-04-01 20:38:03 -04:00
|
|
|
Using PowerShell:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-07-18 05:03:02 -04:00
|
|
|
```shell
|
2019-07-09 14:48:15 -04:00
|
|
|
iwr https://deno.land/x/install/install.ps1 -useb | iex
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-04-01 20:38:03 -04:00
|
|
|
Using [Scoop](https://scoop.sh/) (windows):
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-04-01 20:38:03 -04:00
|
|
|
scoop install deno
|
|
|
|
```
|
|
|
|
|
2019-11-07 00:05:37 -05:00
|
|
|
Using [Chocolatey](https://chocolatey.org/packages/deno) (windows):
|
|
|
|
|
|
|
|
```shell
|
|
|
|
choco install deno
|
|
|
|
```
|
|
|
|
|
|
|
|
Using [Homebrew](https://formulae.brew.sh/formula/deno) (mac):
|
2019-05-24 15:22:16 -04:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-24 15:22:16 -04:00
|
|
|
brew install deno
|
|
|
|
```
|
|
|
|
|
2020-01-24 14:47:11 -05:00
|
|
|
Using [Cargo](https://crates.io/crates/deno):
|
2019-09-15 18:36:27 -04:00
|
|
|
|
|
|
|
```shell
|
2020-01-24 14:47:11 -05:00
|
|
|
cargo install deno
|
2019-09-15 18:36:27 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Deno binaries can also be installed manually, by downloading a tarball or zip
|
|
|
|
file at
|
2019-02-11 17:41:13 -05:00
|
|
|
[github.com/denoland/deno/releases](https://github.com/denoland/deno/releases).
|
|
|
|
These packages contain just a single executable file. You will have to set the
|
|
|
|
executable bit on Mac and Linux.
|
|
|
|
|
2019-03-11 23:39:46 -04:00
|
|
|
Once it's installed and in your `$PATH`, try it:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-10-26 10:40:13 -04:00
|
|
|
deno https://deno.land/std/examples/welcome.ts
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
### Build from Source
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
Follow the [build instruction for contributors](#development).
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
## API reference
|
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
### `deno types`
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
To get an exact reference of deno's runtime API, run the following in the
|
|
|
|
command line:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-04-21 11:34:18 -04:00
|
|
|
$ deno types
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2020-02-19 00:34:11 -05:00
|
|
|
The output is the concatenation of three library files that are built into Deno:
|
|
|
|
|
|
|
|
- [lib.deno.ns.d.ts](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.ns.d.ts)
|
|
|
|
- [lib.deno.shared_globals.d.ts](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.shared_globals.d.ts)
|
|
|
|
- [lib.deno.window.d.ts](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.window.d.ts)
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### Reference websites
|
|
|
|
|
|
|
|
[TypeScript Deno API](https://deno.land/typedoc/index.html).
|
|
|
|
|
|
|
|
If you are embedding deno in a Rust program, see
|
2019-05-03 15:02:14 -04:00
|
|
|
[Rust Deno API](https://docs.rs/deno).
|
|
|
|
|
|
|
|
The Deno crate is hosted on [crates.io](https://crates.io/crates/deno).
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
### An implementation of the unix "cat" program
|
|
|
|
|
|
|
|
In this program each command-line argument is assumed to be a filename, the file
|
|
|
|
is opened, and printed to stdout.
|
|
|
|
|
|
|
|
```ts
|
2020-01-09 13:37:01 -05:00
|
|
|
for (let i = 0; i < Deno.args.length; i++) {
|
2019-10-07 18:57:44 -04:00
|
|
|
let filename = Deno.args[i];
|
|
|
|
let file = await Deno.open(filename);
|
|
|
|
await Deno.copy(Deno.stdout, file);
|
|
|
|
file.close();
|
|
|
|
}
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
The `copy()` function here actually makes no more than the necessary kernel ->
|
|
|
|
userspace -> kernel copies. That is, the same memory from which data is read
|
|
|
|
from the file, is written to stdout. This illustrates a general design goal for
|
|
|
|
I/O streams in Deno.
|
|
|
|
|
|
|
|
Try the program:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno --allow-read https://deno.land/std/examples/cat.ts /etc/passwd
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### TCP echo server
|
|
|
|
|
|
|
|
This is an example of a simple server which accepts connections on port 8080,
|
|
|
|
and returns to the client anything it sends.
|
|
|
|
|
|
|
|
```ts
|
2019-10-07 18:57:44 -04:00
|
|
|
const listener = Deno.listen({ port: 8080 });
|
|
|
|
console.log("listening on 0.0.0.0:8080");
|
2019-10-28 15:58:35 -04:00
|
|
|
for await (const conn of listener) {
|
2019-10-07 18:57:44 -04:00
|
|
|
Deno.copy(conn, conn);
|
|
|
|
}
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-10-22 19:35:43 -04:00
|
|
|
When this program is started, it throws PermissionDenied error.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno https://deno.land/std/examples/echo_server.ts
|
2020-01-27 21:13:17 -05:00
|
|
|
error: Uncaught PermissionDenied: network access to "0.0.0.0:8080", run again with the --allow-net flag
|
2019-10-22 19:35:43 -04:00
|
|
|
► $deno$/dispatch_json.ts:40:11
|
|
|
|
at DenoError ($deno$/errors.ts:20:5)
|
|
|
|
...
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-09-09 10:34:15 -04:00
|
|
|
For security reasons, Deno does not allow programs to access the network without
|
2019-10-22 19:35:43 -04:00
|
|
|
explicit permission. To allow accessing the network, use a command-line flag:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno --allow-net https://deno.land/std/examples/echo_server.ts
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-07-17 10:23:07 -04:00
|
|
|
To test it, try sending data to it with netcat:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ nc localhost 8080
|
|
|
|
hello world
|
|
|
|
hello world
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-07-17 10:23:07 -04:00
|
|
|
Like the `cat.ts` example, the `copy()` function here also does not make
|
|
|
|
unnecessary memory copies. It receives a packet from the kernel and sends back,
|
|
|
|
without further complexity.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-03-04 11:04:19 -05:00
|
|
|
### Inspecting and revoking permissions
|
|
|
|
|
|
|
|
Sometimes a program may want to revoke previously granted permissions. When a
|
2019-10-22 19:35:43 -04:00
|
|
|
program, at a later stage, needs those permissions, it will fail.
|
2019-03-04 11:04:19 -05:00
|
|
|
|
|
|
|
```ts
|
2019-10-07 18:57:44 -04:00
|
|
|
// lookup a permission
|
2019-10-28 15:58:35 -04:00
|
|
|
const status = await Deno.permissions.query({ name: "write" });
|
2019-10-27 11:22:53 -04:00
|
|
|
if (status.state !== "granted") {
|
2019-10-07 18:57:44 -04:00
|
|
|
throw new Error("need write permission");
|
|
|
|
}
|
2019-03-04 11:04:19 -05:00
|
|
|
|
2019-10-28 15:58:35 -04:00
|
|
|
const log = await Deno.open("request.log", "a+");
|
2019-03-04 11:04:19 -05:00
|
|
|
|
2019-10-07 18:57:44 -04:00
|
|
|
// revoke some permissions
|
2019-10-28 15:58:35 -04:00
|
|
|
await Deno.permissions.revoke({ name: "read" });
|
|
|
|
await Deno.permissions.revoke({ name: "write" });
|
2019-03-04 11:04:19 -05:00
|
|
|
|
2019-10-07 18:57:44 -04:00
|
|
|
// use the log file
|
|
|
|
const encoder = new TextEncoder();
|
|
|
|
await log.write(encoder.encode("hello\n"));
|
2019-03-04 11:04:19 -05:00
|
|
|
|
2019-10-22 19:35:43 -04:00
|
|
|
// this will fail.
|
2019-10-28 15:58:35 -04:00
|
|
|
await Deno.remove("request.log");
|
2019-03-04 11:04:19 -05:00
|
|
|
```
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### File server
|
|
|
|
|
|
|
|
This one serves a local directory in HTTP.
|
|
|
|
|
2019-03-11 23:39:46 -04:00
|
|
|
```bash
|
2020-01-30 18:42:39 -05:00
|
|
|
deno install --allow-net --allow-read file_server https://deno.land/std/http/file_server.ts
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Run it:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-03-11 23:39:46 -04:00
|
|
|
$ file_server .
|
2019-03-06 10:23:47 -05:00
|
|
|
Downloading https://deno.land/std/http/file_server.ts...
|
2019-02-11 17:41:13 -05:00
|
|
|
[...]
|
|
|
|
HTTP server listening on http://0.0.0.0:4500/
|
|
|
|
```
|
|
|
|
|
|
|
|
And if you ever want to upgrade to the latest published version:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-03-11 23:39:46 -04:00
|
|
|
$ file_server --reload
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-10-17 10:29:06 -04:00
|
|
|
### Reload specific modules
|
|
|
|
|
|
|
|
Sometimes we want to upgrade only some modules. You can control it by passing an
|
|
|
|
argument to a `--reload` flag.
|
|
|
|
|
|
|
|
To reload everything
|
|
|
|
|
|
|
|
`--reload`
|
|
|
|
|
|
|
|
To reload all standard modules
|
|
|
|
|
|
|
|
`--reload=https://deno.land/std`
|
|
|
|
|
|
|
|
To reload specific modules (in this example - colors and file system utils) use
|
|
|
|
a comma to separate URLs
|
|
|
|
|
|
|
|
`--reload=https://deno.land/std/fs/utils.ts,https://deno.land/std/fmt/colors.ts`
|
|
|
|
|
2019-05-16 10:39:19 -04:00
|
|
|
### Permissions whitelist
|
|
|
|
|
2019-09-09 10:34:15 -04:00
|
|
|
Deno also provides permissions whitelist.
|
2019-05-16 10:39:19 -04:00
|
|
|
|
2019-10-26 10:40:13 -04:00
|
|
|
This is an example to restrict file system access by whitelist.
|
2019-05-16 10:39:19 -04:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno --allow-read=/usr https://deno.land/std/examples/cat.ts /etc/passwd
|
2020-01-27 21:13:17 -05:00
|
|
|
error: Uncaught PermissionDenied: read access to "/etc/passwd", run again with the --allow-read flag
|
2019-10-22 19:35:43 -04:00
|
|
|
► $deno$/dispatch_json.ts:40:11
|
|
|
|
at DenoError ($deno$/errors.ts:20:5)
|
|
|
|
...
|
2019-05-16 10:39:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
You can grant read permission under `/etc` dir
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno --allow-read=/etc https://deno.land/std/examples/cat.ts /etc/passwd
|
2019-05-16 10:39:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
`--allow-write` works same as `--allow-read`.
|
|
|
|
|
|
|
|
This is an example to restrict host.
|
|
|
|
|
|
|
|
```ts
|
2019-10-21 10:36:01 -04:00
|
|
|
const result = await fetch("https://deno.land/");
|
2019-05-16 10:39:19 -04:00
|
|
|
```
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-10-21 10:36:01 -04:00
|
|
|
$ deno --allow-net=deno.land https://deno.land/std/examples/curl.ts https://deno.land/
|
2019-05-16 10:39:19 -04:00
|
|
|
```
|
|
|
|
|
2019-02-18 18:52:46 -05:00
|
|
|
### Run subprocess
|
|
|
|
|
2019-02-21 15:52:35 -05:00
|
|
|
[API Reference](https://deno.land/typedoc/index.html#run)
|
2019-02-18 18:52:46 -05:00
|
|
|
|
2019-02-21 15:52:35 -05:00
|
|
|
Example:
|
2019-02-18 18:52:46 -05:00
|
|
|
|
2019-02-21 15:52:35 -05:00
|
|
|
```ts
|
2019-10-07 18:57:44 -04:00
|
|
|
// create subprocess
|
|
|
|
const p = Deno.run({
|
2020-03-21 17:44:18 -04:00
|
|
|
cmd: ["echo", "hello"]
|
2019-10-07 18:57:44 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// await its completion
|
|
|
|
await p.status();
|
2019-02-18 18:52:46 -05:00
|
|
|
```
|
|
|
|
|
2019-02-21 15:52:35 -05:00
|
|
|
Run it:
|
2019-02-18 18:52:46 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-07-17 10:23:07 -04:00
|
|
|
$ deno --allow-run ./subprocess_simple.ts
|
2019-02-21 15:52:35 -05:00
|
|
|
hello
|
2019-02-18 18:52:46 -05:00
|
|
|
```
|
|
|
|
|
2019-07-16 00:19:26 -04:00
|
|
|
Here a function is assigned to `window.onload`. This function is called after
|
|
|
|
the main script is loaded. This is the same as
|
|
|
|
[onload](https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload)
|
|
|
|
of the browsers, and it can be used as the main entrypoint.
|
|
|
|
|
2019-03-02 16:24:33 -05:00
|
|
|
By default when you use `Deno.run()` subprocess inherits `stdin`, `stdout` and
|
2019-04-06 23:55:44 -04:00
|
|
|
`stderr` of parent process. If you want to communicate with started subprocess
|
2019-02-18 18:52:46 -05:00
|
|
|
you can use `"piped"` option.
|
|
|
|
|
2019-02-21 15:52:35 -05:00
|
|
|
```ts
|
2020-01-09 13:37:01 -05:00
|
|
|
const fileNames = Deno.args;
|
2019-10-07 18:57:44 -04:00
|
|
|
|
|
|
|
const p = Deno.run({
|
2020-03-21 17:44:18 -04:00
|
|
|
cmd: [
|
2019-10-07 18:57:44 -04:00
|
|
|
"deno",
|
|
|
|
"run",
|
|
|
|
"--allow-read",
|
|
|
|
"https://deno.land/std/examples/cat.ts",
|
|
|
|
...fileNames
|
|
|
|
],
|
|
|
|
stdout: "piped",
|
|
|
|
stderr: "piped"
|
|
|
|
});
|
|
|
|
|
|
|
|
const { code } = await p.status();
|
|
|
|
|
|
|
|
if (code === 0) {
|
|
|
|
const rawOutput = await p.output();
|
|
|
|
await Deno.stdout.write(rawOutput);
|
|
|
|
} else {
|
|
|
|
const rawError = await p.stderrOutput();
|
|
|
|
const errorString = new TextDecoder().decode(rawError);
|
|
|
|
console.log(errorString);
|
|
|
|
}
|
|
|
|
|
|
|
|
Deno.exit(code);
|
2019-02-18 18:52:46 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
When you run it:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-04 12:19:26 -04:00
|
|
|
$ deno run --allow-run ./subprocess.ts <somefile>
|
2019-02-18 18:52:46 -05:00
|
|
|
[file content]
|
|
|
|
|
2019-05-04 12:19:26 -04:00
|
|
|
$ deno run --allow-run ./subprocess.ts non_existent_file.md
|
2019-02-18 18:52:46 -05:00
|
|
|
|
|
|
|
Uncaught NotFound: No such file or directory (os error 2)
|
2019-04-15 12:54:17 -04:00
|
|
|
at DenoError (deno/js/errors.ts:22:5)
|
|
|
|
at maybeError (deno/js/errors.ts:41:12)
|
2019-02-18 18:52:46 -05:00
|
|
|
at handleAsyncMsgFromRust (deno/js/dispatch.ts:27:17)
|
|
|
|
```
|
|
|
|
|
2020-01-24 08:15:31 -05:00
|
|
|
### Handle OS Signals
|
|
|
|
|
|
|
|
[API Reference](https://deno.land/typedoc/index.html#signal)
|
|
|
|
|
|
|
|
You can use `Deno.signal()` function for handling OS signals.
|
|
|
|
|
|
|
|
```
|
|
|
|
for await (const _ of Deno.signal(Deno.Signal.SIGINT)) {
|
|
|
|
console.log("interrupted!");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
`Deno.signal()` also works as a promise.
|
|
|
|
|
|
|
|
```
|
|
|
|
await Deno.signal(Deno.Singal.SIGINT);
|
|
|
|
console.log("interrupted!");
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to stop watching the signal, you can use `dispose()` method of the
|
|
|
|
signal object.
|
|
|
|
|
|
|
|
```
|
|
|
|
const sig = Deno.signal(Deno.Signal.SIGINT);
|
|
|
|
setTimeout(() => { sig.dispose(); }, 5000);
|
|
|
|
|
|
|
|
for await (const _ of sig) {
|
|
|
|
console.log("interrupted");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The above for-await loop exits after 5 seconds when sig.dispose() is called.
|
|
|
|
|
2020-02-21 13:21:51 -05:00
|
|
|
### File system events
|
|
|
|
|
|
|
|
To poll for file system events:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const iter = Deno.fsEvents("/");
|
|
|
|
for await (const event of iter) {
|
|
|
|
console.log(">>>> event", event);
|
|
|
|
// { kind: "create", paths: [ "/foo.txt" ] }
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that the exact ordering of the events can vary between operating systems.
|
|
|
|
This feature uses different syscalls depending on the platform:
|
|
|
|
|
|
|
|
Linux: inotify macOS: FSEvents Windows: ReadDirectoryChangesW
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### Linking to third party code
|
|
|
|
|
|
|
|
In the above examples, we saw that Deno could execute scripts from URLs. Like
|
|
|
|
browser JavaScript, Deno can import libraries directly from URLs. This example
|
2020-02-11 15:50:20 -05:00
|
|
|
uses a URL to import an assertion library:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
```ts
|
2020-02-11 15:50:20 -05:00
|
|
|
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2020-02-11 15:50:20 -05:00
|
|
|
Deno.test(function t1() {
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals("hello", "hello");
|
2019-02-11 17:41:13 -05:00
|
|
|
});
|
|
|
|
|
2020-02-11 15:50:20 -05:00
|
|
|
Deno.test(function t2() {
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals("world", "world");
|
2019-02-11 17:41:13 -05:00
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
Try running this:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-04 12:19:26 -04:00
|
|
|
$ deno run test.ts
|
2019-02-11 17:41:13 -05:00
|
|
|
running 2 tests
|
2019-03-02 14:58:50 -05:00
|
|
|
test t1 ... ok
|
|
|
|
test t2 ... ok
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
|
2019-03-02 14:58:50 -05:00
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Note that we did not have to provide the `--allow-net` flag for this program,
|
|
|
|
and yet it accessed the network. The runtime has special access to download
|
|
|
|
imports and cache them to disk.
|
|
|
|
|
|
|
|
Deno caches remote imports in a special directory specified by the `$DENO_DIR`
|
2019-02-13 08:57:00 -05:00
|
|
|
environmental variable. It defaults to the system's cache directory if
|
|
|
|
`$DENO_DIR` is not specified. The next time you run the program, no downloads
|
|
|
|
will be made. If the program hasn't changed, it won't be recompiled either. The
|
|
|
|
default directory is:
|
|
|
|
|
|
|
|
- On Linux/Redox: `$XDG_CACHE_HOME/deno` or `$HOME/.cache/deno`
|
|
|
|
- On Windows: `%LOCALAPPDATA%/deno` (`%LOCALAPPDATA%` = `FOLDERID_LocalAppData`)
|
|
|
|
- On macOS: `$HOME/Library/Caches/deno`
|
|
|
|
- If something fails, it falls back to `$HOME/.deno`
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
**But what if `https://deno.land/` goes down?** Relying on external servers is
|
|
|
|
convenient for development but brittle in production. Production software should
|
|
|
|
always bundle its dependencies. In Deno this is done by checking the `$DENO_DIR`
|
|
|
|
into your source control system, and specifying that path as the `$DENO_DIR`
|
|
|
|
environmental variable at runtime.
|
|
|
|
|
2019-11-03 10:39:27 -05:00
|
|
|
**How can I trust a URL that may change** By using a lock file (using the
|
|
|
|
`--lock` command line flag) you can ensure you're running the code you expect to
|
|
|
|
be.
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
**How do you import to a specific version?** Simply specify the version in the
|
|
|
|
URL. For example, this URL fully specifies the code being run:
|
|
|
|
`https://unpkg.com/liltest@0.0.5/dist/liltest.js`. Combined with the
|
|
|
|
aforementioned technique of setting `$DENO_DIR` in production to stored code,
|
|
|
|
one can fully specify the exact code being run, and execute the code without
|
|
|
|
network access.
|
|
|
|
|
|
|
|
**It seems unwieldy to import URLs everywhere. What if one of the URLs links to
|
|
|
|
a subtly different version of a library? Isn't it error prone to maintain URLs
|
|
|
|
everywhere in a large project?** The solution is to import and re-export your
|
2019-03-08 13:10:14 -05:00
|
|
|
external libraries in a central `deps.ts` file (which serves the same purpose as
|
|
|
|
Node's `package.json` file). For example, let's say you were using the above
|
2020-02-11 15:50:20 -05:00
|
|
|
assertion library across a large project. Rather than importing
|
|
|
|
`"https://deno.land/std/testing/asserts.ts"` everywhere, you could create a
|
2019-09-09 10:34:15 -04:00
|
|
|
`deps.ts` file that exports the third-party code:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
```ts
|
2019-12-20 15:21:30 -05:00
|
|
|
export {
|
2020-02-11 15:50:20 -05:00
|
|
|
assert,
|
2019-12-20 15:21:30 -05:00
|
|
|
assertEquals,
|
2020-02-11 15:50:20 -05:00
|
|
|
assertStrContains
|
|
|
|
} from "https://deno.land/std/testing/asserts.ts";
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
2019-09-09 10:34:15 -04:00
|
|
|
And throughout the same project, you can import from the `deps.ts` and avoid
|
|
|
|
having many references to the same URL:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
```ts
|
2019-10-26 10:40:13 -04:00
|
|
|
import { assertEquals, runTests, test } from "./deps.ts";
|
2019-02-11 17:41:13 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
This design circumvents a plethora of complexity spawned by package management
|
|
|
|
software, centralized code repositories, and superfluous file formats.
|
|
|
|
|
2019-08-22 12:05:01 -04:00
|
|
|
### Using external type definitions
|
|
|
|
|
|
|
|
Deno supports both JavaScript and TypeScript as first class languages at
|
|
|
|
runtime. This means it requires fully qualified module names, including the
|
|
|
|
extension (or a server providing the correct media type). In addition, Deno has
|
|
|
|
no "magical" module resolution.
|
|
|
|
|
|
|
|
The out of the box TypeScript compiler though relies on both extension-less
|
|
|
|
modules and the Node.js module resolution logic to apply types to JavaScript
|
|
|
|
modules.
|
|
|
|
|
2020-01-26 13:59:41 -05:00
|
|
|
In order to bridge this gap, Deno supports three ways of referencing type
|
|
|
|
definition files without having to resort to "magic" resolution.
|
|
|
|
|
|
|
|
#### Compiler hint
|
|
|
|
|
|
|
|
If you are importing a JavaScript module, and you know where the type definition
|
|
|
|
for that module is located, you can specify the type definition at import. This
|
|
|
|
takes the form of a compiler hint. Compiler hints inform Deno the location of
|
|
|
|
`.d.ts` files and the JavaScript code that is imported that they relate to. The
|
|
|
|
hint is `@deno-types` and when specified the value will be used in the compiler
|
|
|
|
instead of the JavaScript module. For example if you had `foo.js`, but you know
|
|
|
|
that along side of it was `foo.d.ts` which was the types for the file, the code
|
|
|
|
would look like this:
|
2019-08-22 12:05:01 -04:00
|
|
|
|
|
|
|
```ts
|
|
|
|
// @deno-types="./foo.d.ts"
|
|
|
|
import * as foo from "./foo.js";
|
|
|
|
```
|
|
|
|
|
2020-01-26 13:59:41 -05:00
|
|
|
The value follows the same resolution logic as importing a module, meaning the
|
|
|
|
file needs to have an extension and is relative to the current module. Remote
|
|
|
|
specifiers are also allowed.
|
|
|
|
|
|
|
|
The hint affects the next `import` statement (or `export ... from` statement)
|
|
|
|
where the value of the `@deno-types` will be substituted at compile time instead
|
|
|
|
of the specified module. Like in the above example, the Deno compiler will load
|
|
|
|
`./foo.d.ts` instead of `./foo.js`. Deno will still load `./foo.js` when it runs
|
|
|
|
the program.
|
|
|
|
|
|
|
|
#### Triple-slash reference directive in JavaScript files
|
|
|
|
|
|
|
|
If you are hosting modules which you want to be consumed by Deno, and you want
|
|
|
|
to inform Deno the location of the type definitions, you can utilise a
|
|
|
|
triple-slash directive in the actual code. For example, if you have a JavaScript
|
|
|
|
module, where you want to provide Deno with the location of the type definitions
|
|
|
|
for that JavaScript file, which happens to be along side that file. You
|
|
|
|
JavaScript module named `foo.js` might look like this:
|
|
|
|
|
|
|
|
```js
|
|
|
|
/// <reference types="./foo.d.ts" />
|
|
|
|
export const foo = "foo";
|
|
|
|
```
|
|
|
|
|
|
|
|
Deno will see this, and the compiler will use `foo.d.ts` when type checking the
|
|
|
|
file, though `foo.js` will be loaded at runtime. The resolution of the value of
|
|
|
|
the directive follows the same resolution logic as importing a module, meaning
|
|
|
|
the file needs to have an extension and is relative to the current file. Remote
|
|
|
|
specifiers are also allowed.
|
|
|
|
|
|
|
|
#### X-TypeScript-Types custom header
|
|
|
|
|
|
|
|
If you are hosting modules which you want to be consumed by Deno, and you want
|
|
|
|
to inform Deno the location of the type definitions, you can use a custom HTTP
|
|
|
|
header of `X-TypeScript-Types` to inform Deno of the location of that file.
|
|
|
|
|
|
|
|
The header works in the same way as the triple-slash reference mentioned above,
|
|
|
|
it just means that the content of the JavaScript file itself does not need to be
|
|
|
|
modified, and the location of the type definitions can be determined by the
|
|
|
|
server itself.
|
2019-08-22 12:05:01 -04:00
|
|
|
|
|
|
|
**Not all type definitions are supported.**
|
|
|
|
|
|
|
|
Deno will use the compiler hint to load the indicated `.d.ts` files, but some
|
|
|
|
`.d.ts` files contain unsupported features. Specifically, some `.d.ts` files
|
|
|
|
expect to be able to load or reference type definitions from other packages
|
|
|
|
using the module resolution logic. For example a type reference directive to
|
|
|
|
include `node`, expecting to resolve to some path like
|
|
|
|
`./node_modules/@types/node/index.d.ts`. Since this depends on non-relative
|
|
|
|
"magical" resolution, Deno cannot resolve this.
|
|
|
|
|
2020-01-26 13:59:41 -05:00
|
|
|
**Why not use the triple-slash type reference in TypeScript files?**
|
2019-08-22 12:05:01 -04:00
|
|
|
|
|
|
|
The TypeScript compiler supports triple-slash directives, including a type
|
|
|
|
reference directive. If Deno used this, it would interfere with the behavior of
|
2020-01-26 13:59:41 -05:00
|
|
|
the TypeScript compiler. Deno only looks for the directive in JavaScript (and
|
|
|
|
JSX) files.
|
2019-08-22 12:05:01 -04:00
|
|
|
|
2020-02-19 00:34:11 -05:00
|
|
|
### Referencing TypeScript library files
|
|
|
|
|
|
|
|
When you use `deno run`, or other Deno commands which type check TypeScript,
|
|
|
|
that code is evaluated against custom libraries which describe the environment
|
|
|
|
that Deno supports. By default, the compiler runtime APIs which type check
|
|
|
|
TypeScript also use these libraries (`Deno.compile()` and `Deno.bundle()`).
|
|
|
|
|
|
|
|
But if you want to compile or bundle TypeScript for some other runtime, you may
|
|
|
|
want to override the default libraries. In order to do this, the runtime APIs
|
|
|
|
support the `lib` property in the compiler options. For example, if you had
|
|
|
|
TypeScript code that is destined for the browser, you would want to use the
|
|
|
|
TypeScript `"dom"` library:
|
|
|
|
|
|
|
|
```ts
|
2020-03-15 10:30:11 -04:00
|
|
|
const [errors, emitted] = await Deno.compile(
|
2020-02-19 00:34:11 -05:00
|
|
|
"main.ts",
|
|
|
|
{
|
|
|
|
"main.ts": `document.getElementById("foo");\n`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lib: ["dom", "esnext"]
|
|
|
|
}
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
For a list of all the libraries that TypeScript supports, see the
|
|
|
|
[`lib` compiler option](https://www.typescriptlang.org/docs/handbook/compiler-options.html)
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
**Don't forget to include the JavaScript library**
|
|
|
|
|
|
|
|
Just like `tsc`, when you supply a `lib` compiler option, it overrides the
|
|
|
|
default ones, which means that the basic JavaScript library won't be included
|
|
|
|
and you should include the one that best represents your target runtime (e.g.
|
|
|
|
`es5`, `es2015`, `es2016`, `es2017`, `es2018`, `es2019`, `es2020` or `esnext`).
|
|
|
|
|
|
|
|
#### Including the `Deno` namespace
|
|
|
|
|
|
|
|
In addition to the libraries that are provided by TypeScript, there are four
|
|
|
|
libraries that are built into Deno that can be referenced:
|
|
|
|
|
|
|
|
- `deno.ns` - Provides the `Deno` namespace.
|
|
|
|
- `deno.shared_globals` - Provides global interfaces and variables which Deno
|
|
|
|
supports at runtime that are then exposed by the final runtime library.
|
|
|
|
- `deno.window` - Exposes the global variables plus the Deno namespace that are
|
|
|
|
available in the Deno main worker and is the default for the runtime compiler
|
|
|
|
APIs.
|
|
|
|
- `deno.worker` - Exposes the global variables that are available in workers
|
|
|
|
under Deno.
|
|
|
|
|
|
|
|
So to add the Deno namespace to a compilation, you would include the `deno.ns`
|
|
|
|
lib in the array. For example:
|
|
|
|
|
|
|
|
```ts
|
2020-03-15 10:30:11 -04:00
|
|
|
const [errors, emitted] = await Deno.compile(
|
2020-02-19 00:34:11 -05:00
|
|
|
"main.ts",
|
|
|
|
{
|
|
|
|
"main.ts": `document.getElementById("foo");\n`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lib: ["dom", "esnext", "deno.ns"]
|
|
|
|
}
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
**Note** that the Deno namespace expects a runtime environment that is at least
|
|
|
|
ES2018 or later. This means if you use a lib "lower" than ES2018 you will get
|
|
|
|
errors logged as part of the compilation.
|
|
|
|
|
|
|
|
#### Using the triple slash reference
|
|
|
|
|
|
|
|
You do not have to specify the `lib` in just the compiler options. Deno supports
|
|
|
|
[the triple-slash reference to a lib](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-lib-).
|
|
|
|
and could be embedded in the contents of the file. For example of you have a
|
|
|
|
`main.ts` like:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
/// <reference lib="dom" />
|
|
|
|
|
|
|
|
document.getElementById("foo");
|
|
|
|
```
|
|
|
|
|
|
|
|
It would compiler without errors like this:
|
|
|
|
|
|
|
|
```ts
|
2020-03-15 10:30:11 -04:00
|
|
|
const [errors, emitted] = await Deno.compile("./main.ts", undefined, {
|
2020-02-19 00:34:11 -05:00
|
|
|
lib: ["esnext"]
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
**Note** that the `dom` library conflicts with some of the default globals that
|
|
|
|
are defined in the default type library for Deno. To avoid this, you need to
|
|
|
|
specify a `lib` option in the compiler options to the runtime compiler APIs.
|
|
|
|
|
2019-02-12 21:14:02 -05:00
|
|
|
### Testing if current file is the main program
|
|
|
|
|
2019-03-02 15:02:47 -05:00
|
|
|
To test if the current script has been executed as the main input to the program
|
|
|
|
check `import.meta.main`.
|
2019-02-12 21:14:02 -05:00
|
|
|
|
|
|
|
```ts
|
2019-03-02 15:02:47 -05:00
|
|
|
if (import.meta.main) {
|
2019-02-12 21:14:02 -05:00
|
|
|
console.log("main");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
## Command line interface
|
|
|
|
|
|
|
|
### Flags
|
|
|
|
|
2020-03-10 19:23:08 -04:00
|
|
|
Use `deno help` to see help text documenting Deno's flags and usage. Use
|
|
|
|
`deno help <subcommand>` for subcommand-specific flags.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
### Environmental variables
|
|
|
|
|
|
|
|
There are several env vars that control how Deno behaves:
|
|
|
|
|
|
|
|
`DENO_DIR` defaults to `$HOME/.deno` but can be set to any path to control where
|
|
|
|
generated and cached source code is written and read to.
|
|
|
|
|
|
|
|
`NO_COLOR` will turn off color output if set. See https://no-color.org/. User
|
|
|
|
code can test if `NO_COLOR` was set without having `--allow-env` by using the
|
2019-03-02 16:24:33 -05:00
|
|
|
boolean constant `Deno.noColor`.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-26 06:02:13 -04:00
|
|
|
### Shell completion
|
|
|
|
|
|
|
|
You can generate completion script for your shell using the
|
|
|
|
`deno completions <shell>` command. The command outputs to stdout so you should
|
|
|
|
redirect it to an appropriate file.
|
|
|
|
|
|
|
|
The supported shells are:
|
|
|
|
|
|
|
|
- zsh
|
|
|
|
- bash
|
|
|
|
- fish
|
|
|
|
- powershell
|
|
|
|
- elvish
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-06-26 06:02:13 -04:00
|
|
|
deno completions bash > /usr/local/etc/bash_completion.d/deno.bash
|
|
|
|
source /usr/local/etc/bash_completion.d/deno.bash
|
|
|
|
```
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### V8 flags
|
|
|
|
|
2019-12-12 00:02:07 -05:00
|
|
|
V8 has many many internal command-line flags.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# list available v8 flags
|
|
|
|
$ deno --v8-flags=--help
|
|
|
|
|
|
|
|
# example for applying multiple flags
|
|
|
|
$ deno --v8-flags=--expose-gc,--use-strict
|
|
|
|
```
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
Particularly useful ones:
|
|
|
|
|
|
|
|
```
|
|
|
|
--async-stack-trace
|
|
|
|
```
|
|
|
|
|
2019-06-11 14:38:19 -04:00
|
|
|
### Bundling
|
|
|
|
|
2019-11-13 10:35:56 -05:00
|
|
|
`deno bundle [URL]` will output a single JavaScript file, which includes all
|
|
|
|
dependencies of the specified input. For example:
|
2019-06-11 14:38:19 -04:00
|
|
|
|
|
|
|
```
|
2019-11-20 11:02:08 -05:00
|
|
|
> deno bundle https://deno.land/std/examples/colors.ts colors.bundle.js
|
2019-06-11 14:38:19 -04:00
|
|
|
Bundling "colors.bundle.js"
|
|
|
|
Emitting bundle to "colors.bundle.js"
|
|
|
|
9.2 kB emitted.
|
|
|
|
```
|
|
|
|
|
2019-11-20 11:02:08 -05:00
|
|
|
If you omit the out file, the bundle will be sent to `stdout`.
|
|
|
|
|
2019-11-13 10:35:56 -05:00
|
|
|
The bundle can just be run as any other module in Deno would:
|
2019-06-11 14:38:19 -04:00
|
|
|
|
|
|
|
```
|
2019-11-13 10:35:56 -05:00
|
|
|
deno colors.bundle.js
|
2019-06-11 14:38:19 -04:00
|
|
|
```
|
|
|
|
|
2019-11-20 11:02:08 -05:00
|
|
|
The output is a self contained ES Module, which any exports from the main module
|
|
|
|
supplied on the command line will be available. For example if the main module
|
|
|
|
looked something like this:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
export { foo } from "./foo.js";
|
|
|
|
|
|
|
|
export const bar = "bar";
|
|
|
|
```
|
|
|
|
|
|
|
|
It could be imported like this:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
import { foo, bar } from "./lib.bundle.js";
|
|
|
|
```
|
|
|
|
|
|
|
|
Bundles can also be loaded in the web browser. The bundle is a self-contained ES
|
|
|
|
module, and so the attribute of `type` must be set to `"module"`. For example:
|
2019-06-11 14:38:19 -04:00
|
|
|
|
|
|
|
```html
|
2019-11-20 11:02:08 -05:00
|
|
|
<script type="module" src="website.bundle.js"></script>
|
2019-06-11 14:38:19 -04:00
|
|
|
```
|
|
|
|
|
2019-11-20 11:02:08 -05:00
|
|
|
Or you could import it into another ES module to consume:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script type="module">
|
|
|
|
import * as website from "website.bundle.js";
|
|
|
|
</script>
|
|
|
|
```
|
2019-06-11 14:38:19 -04:00
|
|
|
|
2019-06-20 14:25:13 -04:00
|
|
|
### Installing executable scripts
|
|
|
|
|
|
|
|
Deno provides ability to easily install and distribute executable code via
|
|
|
|
`deno install` command.
|
|
|
|
|
2020-01-30 18:42:39 -05:00
|
|
|
`deno install [FLAGS...] [EXE_NAME] [URL] [SCRIPT_ARGS...]` will install script
|
|
|
|
available at `URL` with name `EXE_NAME`.
|
2019-06-20 14:25:13 -04:00
|
|
|
|
|
|
|
This command is a thin wrapper that creates executable shell scripts which
|
|
|
|
invoke `deno` with specified permissions and CLI flags.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2020-01-30 18:42:39 -05:00
|
|
|
$ deno install --allow-net --allow-read file_server https://deno.land/std/http/file_server.ts
|
2019-06-20 14:25:13 -04:00
|
|
|
[1/1] Compiling https://deno.land/std/http/file_server.ts
|
|
|
|
|
|
|
|
✅ Successfully installed file_server.
|
|
|
|
/Users/deno/.deno/bin/file_server
|
|
|
|
```
|
|
|
|
|
2020-01-30 18:42:39 -05:00
|
|
|
By default scripts are installed at `$HOME/.deno/bin` or
|
|
|
|
`$USERPROFILE/.deno/bin` and one of that directories must be added to the path
|
|
|
|
manually.
|
2019-06-20 14:25:13 -04:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-06-20 14:25:13 -04:00
|
|
|
$ echo 'export PATH="$HOME/.deno/bin:$PATH"' >> ~/.bashrc
|
|
|
|
```
|
|
|
|
|
|
|
|
Installation directory can be changed using `-d/--dir` flag:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2020-01-30 18:42:39 -05:00
|
|
|
$ deno install --allow-net --allow-read --dir /usr/local/bin file_server https://deno.land/std/http/file_server.ts
|
2019-06-20 14:25:13 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
When installing a script you can specify permissions that will be used to run
|
2020-01-30 18:42:39 -05:00
|
|
|
the script.
|
2019-06-20 14:25:13 -04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2020-01-30 18:42:39 -05:00
|
|
|
$ deno install --allow-net --allow-read file_server https://deno.land/std/http/file_server.ts 8080
|
2019-06-20 14:25:13 -04:00
|
|
|
```
|
|
|
|
|
2020-01-29 21:16:48 -05:00
|
|
|
Above command creates an executable called `file_server` that runs with write
|
|
|
|
and read permissions and binds to port 8080.
|
2019-06-20 14:25:13 -04:00
|
|
|
|
|
|
|
It is a good practice to use `import.meta.main` idiom for an entry point for
|
|
|
|
executable file. See
|
2019-10-29 05:17:58 -04:00
|
|
|
[Testing if current file is the main program](#testing-if-current-file-is-the-main-program)
|
2019-06-20 14:25:13 -04:00
|
|
|
section.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
// https://example.com/awesome/cli.ts
|
|
|
|
async function myAwesomeCli(): Promise<void> {
|
|
|
|
-- snip --
|
|
|
|
}
|
|
|
|
|
|
|
|
if (import.meta.main) {
|
|
|
|
myAwesomeCli();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
When you create executable script make sure to let users know by adding example
|
|
|
|
installation command to your repository:
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-06-20 14:25:13 -04:00
|
|
|
# Install using deno install
|
|
|
|
|
|
|
|
$ deno install awesome_cli https://example.com/awesome/cli.ts
|
|
|
|
```
|
|
|
|
|
2019-04-25 13:29:21 -04:00
|
|
|
## Proxies
|
|
|
|
|
2019-09-24 18:52:01 -04:00
|
|
|
Deno supports proxies for module downloads and `fetch` API.
|
2019-04-25 13:29:21 -04:00
|
|
|
|
2019-09-24 18:52:01 -04:00
|
|
|
Proxy configuration is read from environmental variables: `HTTP_PROXY` and
|
|
|
|
`HTTPS_PROXY`.
|
2019-04-25 13:29:21 -04:00
|
|
|
|
2019-09-24 18:52:01 -04:00
|
|
|
In case of Windows if environmental variables are not found Deno falls back to
|
2019-04-25 13:29:21 -04:00
|
|
|
reading proxies from registry.
|
|
|
|
|
2019-11-03 10:39:27 -05:00
|
|
|
## Lock file
|
|
|
|
|
|
|
|
Deno can store and check module subresource integrity for modules using a small
|
|
|
|
JSON file. Use the `--lock=lock.json` to enable and specify lock file checking.
|
|
|
|
To update or create a lock use `--lock=lock.json --lock-write`.
|
|
|
|
|
2019-06-09 09:08:20 -04:00
|
|
|
## Import maps
|
|
|
|
|
|
|
|
Deno supports [import maps](https://github.com/WICG/import-maps).
|
|
|
|
|
|
|
|
One can use import map with `--importmap=<FILE>` CLI flag.
|
|
|
|
|
|
|
|
Current limitations:
|
|
|
|
|
|
|
|
- single import map
|
|
|
|
- no fallback URLs
|
|
|
|
- Deno does not support `std:` namespace
|
|
|
|
- Does supports only `file:`, `http:` and `https:` schemes
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// import_map.json
|
|
|
|
|
|
|
|
{
|
|
|
|
"imports": {
|
|
|
|
"http/": "https://deno.land/std/http/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```ts
|
|
|
|
// hello_server.ts
|
|
|
|
|
|
|
|
import { serve } from "http/server.ts";
|
|
|
|
|
2019-10-27 09:04:42 -04:00
|
|
|
const body = new TextEncoder().encode("Hello World\n");
|
|
|
|
for await (const req of serve(":8000")) {
|
|
|
|
req.respond({ body });
|
|
|
|
}
|
2019-06-09 09:08:20 -04:00
|
|
|
```
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-06-09 09:08:20 -04:00
|
|
|
$ deno run --importmap=import_map.json hello_server.ts
|
|
|
|
```
|
|
|
|
|
2019-11-15 12:42:40 -05:00
|
|
|
## WASM support
|
|
|
|
|
|
|
|
Deno can execute [wasm](https://webassembly.org/) binaries.
|
|
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
```js
|
|
|
|
const wasmCode = new Uint8Array([
|
|
|
|
0, 97, 115, 109, 1, 0, 0, 0, 1, 133, 128, 128, 128, 0, 1, 96, 0, 1, 127,
|
|
|
|
3, 130, 128, 128, 128, 0, 1, 0, 4, 132, 128, 128, 128, 0, 1, 112, 0, 0,
|
|
|
|
5, 131, 128, 128, 128, 0, 1, 0, 1, 6, 129, 128, 128, 128, 0, 0, 7, 145,
|
|
|
|
128, 128, 128, 0, 2, 6, 109, 101, 109, 111, 114, 121, 2, 0, 4, 109, 97,
|
|
|
|
105, 110, 0, 0, 10, 138, 128, 128, 128, 0, 1, 132, 128, 128, 128, 0, 0,
|
|
|
|
65, 42, 11
|
|
|
|
]);
|
|
|
|
const wasmModule = new WebAssembly.Module(wasmCode);
|
|
|
|
const wasmInstance = new WebAssembly.Instance(wasmModule);
|
|
|
|
console.log(wasmInstance.exports.main().toString());
|
|
|
|
```
|
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
|
|
|
|
WASM files can also be loaded using imports:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
import { fib } from "./fib.wasm";
|
|
|
|
console.log(fib(20));
|
|
|
|
```
|
|
|
|
|
2020-01-08 09:17:44 -05:00
|
|
|
## Compiler API
|
|
|
|
|
|
|
|
Deno supports runtime access to the built in TypeScript compiler. There are
|
|
|
|
three methods in the `Deno` namespace that provide this access.
|
|
|
|
|
|
|
|
### `Deno.compile()`
|
|
|
|
|
|
|
|
This works similar to `deno fetch` in that it can fetch code, compile it, but
|
|
|
|
not run it. It takes up to three arguments, the `rootName`, optionally
|
|
|
|
`sources`, and optionally `options`. The `rootName` is the root module which
|
|
|
|
will be used to generate the resulting program. This is like module name you
|
|
|
|
would pass on the command line in `deno --reload run example.ts`. The `sources`
|
|
|
|
is a hash where the key is the fully qualified module name, and the value is the
|
|
|
|
text source of the module. If `sources` is passed, Deno will resolve all the
|
|
|
|
modules from within that hash and not attempt to resolve them outside of Deno.
|
|
|
|
If `sources` are not provided, Deno will resolve modules as if the root module
|
|
|
|
had been passed on the command line. Deno will also cache any of these
|
|
|
|
resources. The `options` argument is a set of options of type
|
|
|
|
`Deno.CompilerOptions`, which is a subset of the TypeScript compiler options
|
|
|
|
which can be supported by Deno.
|
|
|
|
|
|
|
|
The method resolves with a tuple where the first argument is any diagnostics
|
|
|
|
(syntax or type errors) related to the code, and a map of the code, where the
|
|
|
|
key would be the output filename and the value would be the content.
|
|
|
|
|
|
|
|
An example of providing sources:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const [diagnostics, emitMap] = await Deno.compile("/foo.ts", {
|
|
|
|
"/foo.ts": `import * as bar from "./bar.ts";\nconsole.log(bar);\n`,
|
|
|
|
"/bar.ts": `export const bar = "bar";\n`
|
|
|
|
});
|
|
|
|
|
|
|
|
assert(diagnostics == null); // ensuring no diagnostics are returned
|
|
|
|
console.log(emitMap);
|
|
|
|
```
|
|
|
|
|
|
|
|
We would expect map to contain 4 "files", named `/foo.js.map`, `/foo.js`,
|
|
|
|
`/bar.js.map`, and `/bar.js`.
|
|
|
|
|
|
|
|
When not supplying resources, you can use local or remote modules, just like you
|
|
|
|
could do on the command line. So you could do something like this:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const [diagnostics, emitMap] = await Deno.compile(
|
|
|
|
"https://deno.land/std/examples/welcome.ts"
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
We should get back in the `emitMap` a simple `console.log()` statement.
|
|
|
|
|
|
|
|
### `Deno.bundle()`
|
|
|
|
|
|
|
|
This works a lot like `deno bundle` does on the command line. It is also like
|
|
|
|
`Deno.compile()`, except instead of returning a map of files, it returns a
|
|
|
|
single string, which is a self-contained JavaScript ES module which will include
|
|
|
|
all of the code that was provided or resolved as well as exports of all the
|
|
|
|
exports of the root module that was provided. It takes up to three arguments,
|
|
|
|
the `rootName`, optionally `sources`, and optionally `options`. The `rootName`
|
|
|
|
is the root module which will be used to generate the resulting program. This is
|
|
|
|
like module name you would pass on the command line in `deno bundle example.ts`.
|
|
|
|
The `sources` is a hash where the key is the fully qualified module name, and
|
|
|
|
the value is the text source of the module. If `sources` is passed, Deno will
|
|
|
|
resolve all the modules from within that hash and not attempt to resolve them
|
|
|
|
outside of Deno. If `sources` are not provided, Deno will resolve modules as if
|
|
|
|
the root module had been passed on the command line. Deno will also cache any of
|
|
|
|
these resources. The `options` argument is a set of options of type
|
|
|
|
`Deno.CompilerOptions`, which is a subset of the TypeScript compiler options
|
|
|
|
which can be supported by Deno.
|
|
|
|
|
|
|
|
An example of providing sources:
|
|
|
|
|
|
|
|
```ts
|
2020-01-21 10:12:19 -05:00
|
|
|
const [diagnostics, emit] = await Deno.bundle("/foo.ts", {
|
2020-01-08 09:17:44 -05:00
|
|
|
"/foo.ts": `import * as bar from "./bar.ts";\nconsole.log(bar);\n`,
|
|
|
|
"/bar.ts": `export const bar = "bar";\n`
|
|
|
|
});
|
|
|
|
|
|
|
|
assert(diagnostics == null); // ensuring no diagnostics are returned
|
|
|
|
console.log(emit);
|
|
|
|
```
|
|
|
|
|
|
|
|
We would expect `emit` to be the text for an ES module, which would contain the
|
|
|
|
output sources for both modules.
|
|
|
|
|
|
|
|
When not supplying resources, you can use local or remote modules, just like you
|
|
|
|
could do on the command line. So you could do something like this:
|
|
|
|
|
|
|
|
```ts
|
2020-01-21 10:12:19 -05:00
|
|
|
const [diagnostics, emit] = await Deno.bundle(
|
2020-01-08 09:17:44 -05:00
|
|
|
"https://deno.land/std/http/server.ts"
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
We should get back in `emit` a self contained JavaScript ES module with all of
|
|
|
|
its dependencies resolved and exporting the same exports as the source module.
|
|
|
|
|
|
|
|
### `Deno.transpileOnly()`
|
|
|
|
|
|
|
|
This is based off of the TypeScript function `transpileModule()`. All this does
|
|
|
|
is "erase" any types from the modules and emit JavaScript. There is no type
|
|
|
|
checking and no resolution of dependencies. It accepts up to two arguments, the
|
|
|
|
first is a hash where the key is the module name and the value is the contents.
|
|
|
|
The only purpose of the module name is when putting information into a source
|
|
|
|
map, of what the source file name was. The second is optionally `options` which
|
|
|
|
is of type `Deno.CompilerOptions`. This is a subset of options which can be
|
|
|
|
supported by Deno. It resolves with a map where the key is the source module
|
|
|
|
name supplied, and the value is an object with a property of `source` which is
|
|
|
|
the output contents of the module, and optionally `map` which would be the
|
|
|
|
source map. By default, source maps are output, but can be turned off via the
|
|
|
|
`options` argument.
|
|
|
|
|
|
|
|
An example:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const result = await Deno.transpileOnly({
|
|
|
|
"/foo.ts": `enum Foo { Foo, Bar, Baz };\n`
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log(result["/foo.ts"].source);
|
|
|
|
console.log(result["/foo.ts"].map);
|
|
|
|
```
|
|
|
|
|
|
|
|
We would expect the `enum` would be rewritten to an IIFE which constructs the
|
|
|
|
enumerable, and the map to be defined.
|
|
|
|
|
2020-03-05 08:26:36 -05:00
|
|
|
## TypeScript Compiler Options
|
|
|
|
|
|
|
|
In Deno ecosystem, all strict flags are enabled in order to comply with
|
|
|
|
TypeScript ideal of being `strict` by default. However, in order to provide a
|
|
|
|
way to support customization a configuration file such as `tsconfig.json` might
|
|
|
|
be provided to Deno on program execution.
|
|
|
|
|
|
|
|
You do need to explicitly tell Deno where to look for this configuration, in
|
|
|
|
order to do so you can use the `-c` argument when executing your application.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
deno -c tsconfig.json mod.ts
|
|
|
|
```
|
|
|
|
|
|
|
|
Currently allowed settings, as well as their default values in Deno go as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": false,
|
|
|
|
"allowUmdGlobalAccess": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"assumeChangesOnlyAffectDirectDependencies": false,
|
|
|
|
"checkJs": false,
|
|
|
|
"disableSizeLimit": false,
|
|
|
|
"generateCpuProfile": "profile.cpuprofile",
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "React.createElement",
|
|
|
|
"lib": [],
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noStrictGenericChecks": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"preserveConstEnums": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"suppressExcessPropertyErrors": false,
|
|
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
|
|
"useDefineForClassFields": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
For documentation on allowed values and use cases please visit
|
|
|
|
https://www.typescriptlang.org/docs/handbook/compiler-options.html
|
|
|
|
|
|
|
|
**Note**: Any options not listed above are either not supported by Deno or are
|
|
|
|
listed as deprecated/experimental in the TypeScript documentation.
|
|
|
|
|
2019-10-02 11:32:51 -04:00
|
|
|
## Program lifecycle
|
|
|
|
|
|
|
|
Deno supports browser compatible lifecycle events: `load` and `unload`. You can
|
|
|
|
use these event to provide setup and cleanup code in your program.
|
|
|
|
|
|
|
|
`load` event listener supports asynchronous functions and will await these
|
|
|
|
functions. `unload` event listener supports only synchronous code. Both events
|
|
|
|
are not cancellable.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
// main.ts
|
|
|
|
import "./imported.ts";
|
|
|
|
|
|
|
|
const handler = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in event handler (main)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener("load", handler);
|
|
|
|
|
|
|
|
window.addEventListener("unload", handler);
|
|
|
|
|
|
|
|
window.onload = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in onload function (main)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.onunload = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in onunload function (main)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
// imported.ts
|
|
|
|
const handler = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in event handler (imported)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener("load", handler);
|
|
|
|
window.addEventListener("unload", handler);
|
|
|
|
|
|
|
|
window.onload = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in onload function (imported)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.onunload = (e: Event): void => {
|
|
|
|
console.log(`got ${e.type} event in onunload function (imported)`);
|
|
|
|
};
|
|
|
|
|
|
|
|
console.log("log from imported script");
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that you can use both `window.addEventListener` and
|
|
|
|
`window.onload`/`window.onunload` to define handlers for events. There is a
|
|
|
|
major difference between them, let's run example:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ deno main.ts
|
|
|
|
log from imported script
|
|
|
|
log from main script
|
|
|
|
got load event in onload function (main)
|
|
|
|
got load event in event handler (imported)
|
|
|
|
got load event in event handler (main)
|
|
|
|
got unload event in onunload function (main)
|
|
|
|
got unload event in event handler (imported)
|
|
|
|
got unload event in event handler (main)
|
|
|
|
```
|
|
|
|
|
|
|
|
All listeners added using `window.addEventListener` were run, but
|
|
|
|
`window.onload` and `window.onunload` defined in `main.ts` overridden handlers
|
|
|
|
defined in `imported.ts`.
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
## Internal details
|
|
|
|
|
2019-02-20 03:29:25 -05:00
|
|
|
### Deno and Linux analogy
|
|
|
|
|
|
|
|
| **Linux** | **Deno** |
|
|
|
|
| ------------------------------: | :------------------------------- |
|
|
|
|
| Processes | Web Workers |
|
|
|
|
| Syscalls | Ops |
|
|
|
|
| File descriptors (fd) | [Resource ids (rid)](#resources) |
|
|
|
|
| Scheduler | Tokio |
|
2019-10-12 15:23:58 -04:00
|
|
|
| Userland: libc++ / glib / boost | https://deno.land/std/ |
|
2019-03-02 16:24:33 -05:00
|
|
|
| /proc/\$\$/stat | [Deno.metrics()](#metrics) |
|
2019-04-21 11:34:18 -04:00
|
|
|
| man pages | deno types |
|
2019-02-20 03:29:25 -05:00
|
|
|
|
|
|
|
#### Resources
|
|
|
|
|
|
|
|
Resources (AKA `rid`) are Deno's version of file descriptors. They are integer
|
|
|
|
values used to refer to open files, sockets, and other concepts. For testing it
|
|
|
|
would be good to be able to query the system for how many open resources there
|
|
|
|
are.
|
|
|
|
|
|
|
|
```ts
|
2019-03-02 16:24:33 -05:00
|
|
|
const { resources, close } = Deno;
|
2019-02-20 03:29:25 -05:00
|
|
|
console.log(resources());
|
2019-11-19 01:07:13 -05:00
|
|
|
// { 0: "stdin", 1: "stdout", 2: "stderr" }
|
|
|
|
close(0);
|
|
|
|
console.log(resources());
|
2019-12-18 09:44:30 -05:00
|
|
|
// { 1: "stdout", 2: "stderr" }
|
2019-02-20 03:29:25 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
#### Metrics
|
|
|
|
|
2019-09-09 10:34:15 -04:00
|
|
|
Metrics is Deno's internal counters for various statics.
|
2019-02-20 03:29:25 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-03-20 12:39:47 -04:00
|
|
|
> console.table(Deno.metrics())
|
|
|
|
┌──────────────────┬────────┐
|
|
|
|
│ (index) │ Values │
|
|
|
|
├──────────────────┼────────┤
|
|
|
|
│ opsDispatched │ 9 │
|
|
|
|
│ opsCompleted │ 9 │
|
|
|
|
│ bytesSentControl │ 504 │
|
|
|
|
│ bytesSentData │ 0 │
|
|
|
|
│ bytesReceived │ 856 │
|
|
|
|
└──────────────────┴────────┘
|
2019-02-20 03:29:25 -05:00
|
|
|
```
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
### Schematic diagram
|
|
|
|
|
2019-10-26 21:15:49 -04:00
|
|
|
<img src="https://deno.land/images/schematic_v0.2.png">
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
### Profiling
|
|
|
|
|
|
|
|
To start profiling,
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Make sure we're only building release.
|
|
|
|
# Build deno and V8's d8.
|
2019-09-06 20:32:58 -04:00
|
|
|
ninja -C target/release d8
|
2019-08-07 11:31:45 -04:00
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
# Start the program we want to benchmark with --prof
|
2019-08-07 11:31:45 -04:00
|
|
|
./target/release/deno tests/http_bench.ts --allow-net --v8-flags=--prof &
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
# Exercise it.
|
|
|
|
third_party/wrk/linux/wrk http://localhost:4500/
|
|
|
|
kill `pgrep deno`
|
|
|
|
```
|
|
|
|
|
|
|
|
V8 will write a file in the current directory that looks like this:
|
|
|
|
`isolate-0x7fad98242400-v8.log`. To examine this file:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
D8_PATH=target/release/ ./third_party/v8/tools/linux-tick-processor
|
|
|
|
isolate-0x7fad98242400-v8.log > prof.log
|
|
|
|
# on macOS, use ./third_party/v8/tools/mac-tick-processor instead
|
|
|
|
```
|
|
|
|
|
|
|
|
`prof.log` will contain information about tick distribution of different calls.
|
|
|
|
|
|
|
|
To view the log with Web UI, generate JSON file of the log:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
D8_PATH=target/release/ ./third_party/v8/tools/linux-tick-processor
|
|
|
|
isolate-0x7fad98242400-v8.log --preprocess > prof.json
|
|
|
|
```
|
|
|
|
|
2019-05-13 07:38:03 -04:00
|
|
|
Open `third_party/v8/tools/profview/index.html` in your browser, and select
|
2019-02-11 17:41:13 -05:00
|
|
|
`prof.json` to view the distribution graphically.
|
|
|
|
|
2019-08-07 11:31:45 -04:00
|
|
|
Useful V8 flags during profiling:
|
|
|
|
|
|
|
|
- --prof
|
|
|
|
- --log-internal-timer-events
|
|
|
|
- --log-timer-events
|
|
|
|
- --track-gc
|
|
|
|
- --log-source-code
|
|
|
|
- --track-gc-object-stats
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
To learn more about `d8` and profiling, check out the following links:
|
|
|
|
|
|
|
|
- [https://v8.dev/docs/d8](https://v8.dev/docs/d8)
|
|
|
|
- [https://v8.dev/docs/profile](https://v8.dev/docs/profile)
|
|
|
|
|
|
|
|
### Debugging with LLDB
|
|
|
|
|
2019-09-09 10:34:15 -04:00
|
|
|
We can use LLDB to debug Deno.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-04 12:19:26 -04:00
|
|
|
$ lldb -- target/debug/deno run tests/worker.js
|
2019-02-11 17:41:13 -05:00
|
|
|
> run
|
|
|
|
> bt
|
|
|
|
> up
|
|
|
|
> up
|
|
|
|
> l
|
|
|
|
```
|
|
|
|
|
|
|
|
To debug Rust code, we can use `rust-lldb`. It should come with `rustc` and is a
|
|
|
|
wrapper around LLDB.
|
|
|
|
|
2019-06-27 11:30:59 -04:00
|
|
|
```shell
|
2019-05-04 12:19:26 -04:00
|
|
|
$ rust-lldb -- ./target/debug/deno run --allow-net tests/http_bench.ts
|
2019-02-11 17:41:13 -05:00
|
|
|
# On macOS, you might get warnings like
|
|
|
|
# `ImportError: cannot import name _remove_dead_weakref`
|
|
|
|
# In that case, use system python by setting PATH, e.g.
|
|
|
|
# PATH=/System/Library/Frameworks/Python.framework/Versions/2.7/bin:$PATH
|
2019-07-10 22:29:03 -04:00
|
|
|
(lldb) command script import "/Users/kevinqian/.rustup/toolchains/1.36.0-x86_64-apple-darwin/lib/rustlib/etc/lldb_rust_formatters.py"
|
2019-02-11 17:41:13 -05:00
|
|
|
(lldb) type summary add --no-value --python-function lldb_rust_formatters.print_val -x ".*" --category Rust
|
|
|
|
(lldb) type category enable Rust
|
|
|
|
(lldb) target create "../deno/target/debug/deno"
|
|
|
|
Current executable set to '../deno/target/debug/deno' (x86_64).
|
|
|
|
(lldb) settings set -- target.run-args "tests/http_bench.ts" "--allow-net"
|
|
|
|
(lldb) b op_start
|
|
|
|
(lldb) r
|
|
|
|
```
|
|
|
|
|
2019-04-04 09:35:52 -04:00
|
|
|
### Deno Core
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-04-04 09:35:52 -04:00
|
|
|
The core binding layer for Deno. It is released as a
|
|
|
|
[standalone crate](https://crates.io/crates/deno). Inside of core is V8 itself,
|
|
|
|
with a binding API called "libdeno". See the crate documentation for more
|
|
|
|
details.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
### Continuous Benchmarks
|
|
|
|
|
2019-03-11 23:39:46 -04:00
|
|
|
See our benchmarks [over here](https://deno.land/benchmarks.html)
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
The benchmark chart supposes `//website/data.json` has the type
|
|
|
|
`BenchmarkData[]` where `BenchmarkData` is defined like the below:
|
|
|
|
|
2019-03-11 23:39:46 -04:00
|
|
|
```ts
|
2019-02-11 17:41:13 -05:00
|
|
|
interface ExecTimeData {
|
|
|
|
mean: number;
|
|
|
|
stddev: number;
|
|
|
|
user: number;
|
|
|
|
system: number;
|
|
|
|
min: number;
|
|
|
|
max: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface BenchmarkData {
|
|
|
|
created_at: string;
|
|
|
|
sha1: string;
|
|
|
|
benchmark: {
|
|
|
|
[key: string]: ExecTimeData;
|
|
|
|
};
|
|
|
|
binarySizeData: {
|
|
|
|
[key: string]: number;
|
|
|
|
};
|
|
|
|
threadCountData: {
|
|
|
|
[key: string]: number;
|
|
|
|
};
|
|
|
|
syscallCountData: {
|
|
|
|
[key: string]: number;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-02-27 00:13:49 -05:00
|
|
|
### Logos
|
|
|
|
|
|
|
|
These Deno logos, like the Deno software, are distributed under the MIT license
|
|
|
|
(public domain and free for use)
|
|
|
|
|
2019-10-29 05:17:58 -04:00
|
|
|
- [A hand drawn one by @ry](https://deno.land/images/deno_logo.png)
|
2019-02-27 00:13:49 -05:00
|
|
|
|
|
|
|
- [An animated one by @hashrock](https://github.com/denolib/animated-deno-logo/)
|
|
|
|
|
|
|
|
- [A high resolution SVG one by @kevinkassimo](https://github.com/denolib/high-res-deno-logo)
|
|
|
|
|
2019-10-29 05:17:58 -04:00
|
|
|
- [A pixelated animation one by @tanakaworld](https://deno.land/images/deno_logo_4.gif)
|
2019-04-14 10:30:10 -04:00
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
## Contributing
|
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
- Read the [style guide](style_guide.md).
|
|
|
|
- Progress towards future releases is tracked
|
|
|
|
[here](https://github.com/denoland/deno/milestones).
|
|
|
|
- Please don't make [the benchmarks](https://deno.land/benchmarks.html) worse.
|
2020-03-04 19:49:51 -05:00
|
|
|
- Ask for help in the [community chat room](https://discord.gg/TGMHGv6).
|
2019-12-24 22:00:30 -05:00
|
|
|
- If you are going to work on an issue, mention so in the issue comments
|
|
|
|
_before_ you start working on the issue.
|
|
|
|
|
|
|
|
### Development
|
|
|
|
|
|
|
|
#### Cloning the Repository
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
Clone on Linux or Mac:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
```bash
|
|
|
|
git clone --recurse-submodules https://github.com/denoland/deno.git
|
|
|
|
```
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
Extra steps for Windows users:
|
2019-02-11 17:41:13 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
1. [Enable "Developer Mode"](https://www.google.com/search?q=windows+enable+developer+mode)
|
|
|
|
(otherwise symlinks would require administrator privileges).
|
|
|
|
2. Make sure you are using git version 2.19.2.windows.1 or newer.
|
|
|
|
3. Set `core.symlinks=true` before the checkout:
|
|
|
|
```bash
|
|
|
|
git config --global core.symlinks true
|
|
|
|
git clone --recurse-submodules https://github.com/denoland/deno.git
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Prerequisites
|
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
The easiest way to build Deno is by using a precompiled version of V8:
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
```
|
|
|
|
V8_BINARY=1 cargo build -vv
|
|
|
|
```
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
However if you want to build Deno and V8 from source code:
|
|
|
|
|
|
|
|
```
|
|
|
|
cargo build -vv
|
|
|
|
```
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
When building V8 from source, there are more dependencies:
|
2020-01-05 19:35:45 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
[Python 2](https://www.python.org/downloads). Ensure that a suffix-less
|
|
|
|
`python`/`python.exe` exists in your `PATH` and it refers to Python 2,
|
|
|
|
[not 3](https://github.com/denoland/deno/issues/464#issuecomment-411795578).
|
2020-01-05 19:35:45 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
For Linux users glib-2.0 development files must also be installed. (On Ubuntu,
|
|
|
|
run `apt install libglib2.0-dev`.)
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
Mac users must have [XCode](https://developer.apple.com/xcode/) installed.
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
For Windows users:
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-02-09 11:07:37 -05:00
|
|
|
1. Get [VS Community 2019](https://www.visualstudio.com/downloads/) with
|
2019-12-24 22:00:30 -05:00
|
|
|
"Desktop development with C++" toolkit and make sure to select the following
|
|
|
|
required tools listed below along with all C++ tools.
|
2020-03-17 20:46:46 -04:00
|
|
|
|
|
|
|
- Visual C++ tools for CMake
|
|
|
|
- Windows 10 SDK (10.0.17763.0)
|
|
|
|
- Testing tools core features - Build Tools
|
|
|
|
- Visual C++ ATL for x86 and x64
|
|
|
|
- Visual C++ MFC for x86 and x64
|
|
|
|
- C++/CLI support
|
|
|
|
- VC++ 2015.3 v14.00 (v140) toolset for desktop
|
2020-02-24 12:31:21 -05:00
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
2. Enable "Debugging Tools for Windows". Go to "Control Panel" → "Programs" →
|
|
|
|
"Programs and Features" → Select "Windows Software Development Kit - Windows
|
|
|
|
10" → "Change" → "Change" → Check "Debugging Tools For Windows" → "Change" ->
|
2020-03-17 20:46:46 -04:00
|
|
|
"Finish". Or use:
|
|
|
|
[Debugging Tools for Windows](https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/)
|
|
|
|
(Notice: it will download the files, you should install
|
|
|
|
`X64 Debuggers And Tools-x64_en-us.msi` file manually.)
|
2019-12-24 22:00:30 -05:00
|
|
|
|
2020-03-17 20:46:46 -04:00
|
|
|
See [rusty_v8's README](https://github.com/denoland/rusty_v8) for more details
|
|
|
|
about the V8 build.
|
2019-12-24 22:00:30 -05:00
|
|
|
|
|
|
|
#### Building
|
|
|
|
|
|
|
|
Build with Cargo:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Build:
|
|
|
|
cargo build -vv
|
|
|
|
|
2020-03-06 09:14:58 -05:00
|
|
|
# Build errors? Ensure you have latest master and try building again, or if that doesn't work try:
|
|
|
|
cargo clean && cargo build -vv
|
|
|
|
|
2019-12-24 22:00:30 -05:00
|
|
|
# Run:
|
2020-02-19 15:36:18 -05:00
|
|
|
./target/debug/deno cli/tests/002_hello.ts
|
2019-12-24 22:00:30 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
#### Testing and Tools
|
|
|
|
|
|
|
|
Test `deno`:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Run the whole suite:
|
|
|
|
cargo test
|
|
|
|
|
|
|
|
# Only test cli/js/:
|
|
|
|
cargo test js_unit_tests
|
|
|
|
```
|
|
|
|
|
|
|
|
Test `std/`:
|
|
|
|
|
|
|
|
```bash
|
2020-03-24 10:34:50 -04:00
|
|
|
cargo test std_tests
|
2019-12-24 22:00:30 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Lint the code:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./tools/lint.py
|
|
|
|
```
|
|
|
|
|
|
|
|
Format the code:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./tools/format.py
|
|
|
|
```
|
|
|
|
|
|
|
|
### Submitting a Pull Request
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
Before submitting, please make sure the following is done:
|
|
|
|
|
2019-02-13 20:12:11 -05:00
|
|
|
1. That there is a related issue and it is referenced in the PR text.
|
|
|
|
2. There are tests that cover the changes.
|
2019-09-19 14:48:05 -04:00
|
|
|
3. Ensure `cargo test` passes.
|
2019-02-13 20:12:11 -05:00
|
|
|
4. Format your code with `tools/format.py`
|
|
|
|
5. Make sure `./tools/lint.py` passes.
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
### Changes to `third_party`
|
|
|
|
|
|
|
|
[`deno_third_party`](https://github.com/denoland/deno_third_party) contains most
|
|
|
|
of the external code that Deno depends on, so that we know exactly what we are
|
2019-03-27 02:26:03 -04:00
|
|
|
executing at any given time. It is carefully maintained with a mixture of manual
|
2019-02-11 17:41:13 -05:00
|
|
|
labor and private scripts. It's likely you will need help from @ry or
|
|
|
|
@piscisaureus to make changes.
|
|
|
|
|
|
|
|
### Adding Ops (aka bindings)
|
|
|
|
|
|
|
|
We are very concerned about making mistakes when adding new APIs. When adding an
|
|
|
|
Op to Deno, the counterpart interfaces on other platforms should be researched.
|
|
|
|
Please list how this functionality is done in Go, Node, Rust, and Python.
|
|
|
|
|
2019-03-02 16:24:33 -05:00
|
|
|
As an example, see how `Deno.rename()` was proposed and added in
|
2019-02-11 17:41:13 -05:00
|
|
|
[PR #671](https://github.com/denoland/deno/pull/671).
|
|
|
|
|
|
|
|
### Documenting APIs
|
|
|
|
|
|
|
|
It is important to document public APIs and we want to do that inline with the
|
|
|
|
code. This helps ensure that code and documentation are tightly coupled
|
|
|
|
together.
|
|
|
|
|
|
|
|
#### Utilize JSDoc
|
|
|
|
|
|
|
|
All publicly exposed APIs and types, both via the `deno` module as well as the
|
|
|
|
global/`window` namespace should have JSDoc documentation. This documentation is
|
|
|
|
parsed and available to the TypeScript compiler, and therefore easy to provide
|
|
|
|
further downstream. JSDoc blocks come just prior to the statement they apply to
|
|
|
|
and are denoted by a leading `/**` before terminating with a `*/`. For example:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
/** A simple JSDoc comment */
|
|
|
|
export const FOO = "foo";
|
|
|
|
```
|