2020-09-12 08:03:18 -04:00
|
|
|
# Module metadata
|
|
|
|
|
|
|
|
## Concepts
|
|
|
|
|
|
|
|
- [import.meta](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import.meta)
|
2020-09-27 13:49:41 -04:00
|
|
|
can provide information on the context of the module.
|
2020-09-12 08:03:18 -04:00
|
|
|
- The boolean
|
|
|
|
[import.meta.main](https://doc.deno.land/builtin/stable#ImportMeta) will let
|
2020-09-27 13:49:41 -04:00
|
|
|
you know if the current module is the program entry point.
|
2020-09-12 08:03:18 -04:00
|
|
|
- The string [import.meta.url](https://doc.deno.land/builtin/stable#ImportMeta)
|
2020-09-27 13:49:41 -04:00
|
|
|
will give you the URL of the current module.
|
2020-09-12 08:03:18 -04:00
|
|
|
- The string
|
|
|
|
[Deno.mainModule](https://doc.deno.land/builtin/stable#Deno.mainModule) will
|
|
|
|
give you the URL of the main module entry point, i.e. the module invoked by
|
2020-09-27 13:49:41 -04:00
|
|
|
the deno runtime.
|
2020-09-12 08:03:18 -04:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
The example below uses two modules to show the difference between
|
|
|
|
`import.meta.url`, `import.meta.main` and `Deno.mainModule`. In this example,
|
2020-09-27 13:49:41 -04:00
|
|
|
`module_a.ts` is the main module entry point:
|
2020-09-12 08:03:18 -04:00
|
|
|
|
|
|
|
```ts
|
|
|
|
/**
|
|
|
|
* module_b.ts
|
|
|
|
*/
|
|
|
|
export function outputB() {
|
|
|
|
console.log("Module B's import.meta.url", import.meta.url);
|
|
|
|
console.log("Module B's mainModule url", Deno.mainModule);
|
|
|
|
console.log(
|
|
|
|
"Is module B the main module via import.meta.main?",
|
|
|
|
import.meta.main,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```ts
|
|
|
|
/**
|
|
|
|
* module_a.ts
|
|
|
|
*/
|
|
|
|
import { outputB } from "./module_b.ts";
|
|
|
|
|
|
|
|
function outputA() {
|
|
|
|
console.log("Module A's import.meta.url", import.meta.url);
|
|
|
|
console.log("Module A's mainModule url", Deno.mainModule);
|
|
|
|
console.log(
|
|
|
|
"Is module A the main module via import.meta.main?",
|
|
|
|
import.meta.main,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
outputA();
|
|
|
|
console.log("");
|
|
|
|
outputB();
|
|
|
|
```
|
|
|
|
|
|
|
|
If `module_a.ts` is located in `/home/alice/deno` then the output of
|
|
|
|
`deno run --allow-read module_a.ts` is:
|
|
|
|
|
|
|
|
```
|
|
|
|
Module A's import.meta.url file:///home/alice/deno/module_a.ts
|
|
|
|
Module A's mainModule url file:///home/alice/deno/module_a.ts
|
|
|
|
Is module A the main module via import.meta.main? true
|
|
|
|
|
|
|
|
Module B's import.meta.url file:///home/alice/deno/module_b.ts
|
|
|
|
Module B's mainModule url file:///home/alice/deno/module_a.ts
|
|
|
|
Is module B the main module via import.meta.main? false
|
|
|
|
```
|