UU aims to provide the following reusable constructs for modern development:
Since browser do not natively support importing remote modules, the reusing is done by the following steps:
deno run -A --reload jsr:@timepp/uu/install
to copy necessary files directly to your local repo. This can be considered as a simplified step to npm install
but without the heavy node_modules folder and transpilation configurations.import { ... } from './path/to/your/local/uu/...
deno run -A --reload jsr:@timepp/uu/install
at any time to upgrade the files to the latest version.Simply `import * as uu from 'jsr:@timepp/uu' in Deno environment.
Add Package
deno add jsr:@timepp/uu
Import symbol
import * as uu from "@timepp/uu";
Import directly with a jsr specifier
import * as uu from "jsr:@timepp/uu";
Add Package
pnpm i jsr:@timepp/uu
pnpm dlx jsr add @timepp/uu
Import symbol
import * as uu from "@timepp/uu";
Add Package
yarn add jsr:@timepp/uu
yarn dlx jsr add @timepp/uu
Import symbol
import * as uu from "@timepp/uu";
Add Package
npx jsr add @timepp/uu
Import symbol
import * as uu from "@timepp/uu";
Add Package
bunx jsr add @timepp/uu
Import symbol
import * as uu from "@timepp/uu";