A reference composed of a namespace and a path.
A namespace is a domain for content. It is to prevent potential content conflicts or unintentional overrides of objects of the same name.
The namespace and the path of a resource location should only contain the following symbols:
0123456789
Numbersabcdefghijklmnopqrstuvwxyz
Lowercase letters_
Underscore-
Hyphen/minus.
DotThe following characters are illegal in the namespace, but acceptable in the path:
/
Forward slash (directory separator)The preferred naming convention for either namespace or path is snake_case
.
Add Package
deno add jsr:@forest/key
Import symbol
import * as key from "@forest/key";
---- OR ----
Import directly with a jsr specifier
import * as key from "jsr:@forest/key";
Add Package
npx jsr add @forest/key
Import symbol
import * as key from "@forest/key";
Add Package
yarn dlx jsr add @forest/key
Import symbol
import * as key from "@forest/key";
Add Package
pnpm dlx jsr add @forest/key
Import symbol
import * as key from "@forest/key";
Add Package
bunx jsr add @forest/key
Import symbol
import * as key from "@forest/key";