2020-05-06 18:21:13 -04:00
|
|
|
## Import maps
|
|
|
|
|
|
|
|
> This is an unstable feature. Learn more about
|
2020-05-09 09:15:26 -04:00
|
|
|
> [unstable features](../runtime/stability.md).
|
2020-05-06 18:21:13 -04:00
|
|
|
|
|
|
|
Deno supports [import maps](https://github.com/WICG/import-maps).
|
|
|
|
|
2020-05-18 15:53:25 -04:00
|
|
|
You can use import maps with the `--importmap=<FILE>` CLI flag.
|
2020-05-06 18:21:13 -04:00
|
|
|
|
|
|
|
Current limitations:
|
|
|
|
|
2020-09-28 02:01:32 -04:00
|
|
|
- single import map.
|
|
|
|
- no fallback URLs.
|
|
|
|
- Deno does not support `std:` namespace.
|
|
|
|
- supports only `file:`, `http:` and `https:` schemes.
|
2020-05-06 18:21:13 -04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
**import_map.json**
|
2020-05-06 18:21:13 -04:00
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
```js
|
2020-05-06 18:21:13 -04:00
|
|
|
{
|
|
|
|
"imports": {
|
2020-07-31 05:12:20 -04:00
|
|
|
"fmt/": "https://deno.land/std@$STD_VERSION/fmt/"
|
2020-05-06 18:21:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
**color.ts**
|
2020-05-06 18:21:13 -04:00
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
```ts
|
|
|
|
import { red } from "fmt/colors.ts";
|
2020-05-06 18:21:13 -04:00
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
console.log(red("hello world"));
|
2020-05-06 18:21:13 -04:00
|
|
|
```
|
|
|
|
|
2020-06-10 13:43:44 -04:00
|
|
|
Then:
|
|
|
|
|
2020-05-06 18:21:13 -04:00
|
|
|
```shell
|
2020-06-12 08:25:53 -04:00
|
|
|
$ deno run --importmap=import_map.json --unstable color.ts
|
2020-05-06 18:21:13 -04:00
|
|
|
```
|
2020-06-27 07:52:07 -04:00
|
|
|
|
2020-08-15 09:47:14 -04:00
|
|
|
To use starting directory for absolute imports:
|
2020-06-27 07:52:07 -04:00
|
|
|
|
|
|
|
```json
|
|
|
|
// import_map.json
|
|
|
|
|
|
|
|
{
|
|
|
|
"imports": {
|
|
|
|
"/": "./"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```ts
|
|
|
|
// main.ts
|
|
|
|
|
|
|
|
import { MyUtil } from "/util.ts";
|
|
|
|
```
|
|
|
|
|
|
|
|
You may map a different directory: (eg. src)
|
|
|
|
|
|
|
|
```json
|
|
|
|
// import_map.json
|
|
|
|
|
|
|
|
{
|
|
|
|
"imports": {
|
|
|
|
"/": "./src"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|