Skip to main content
This release is 3 versions behind 0.1.19 — the latest version of @timepp/uu. Jump to latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
41%
Published
a week ago (0.1.15)

UU

UU aims to provide the following reusable constructs for modern development:

  • script development using typescript and Deno
  • web development using typescript and Vite, without any transpilation step

Reusing UI components

Since browser do not natively support importing remote modules, the reusing is done by the following steps:

  1. Run 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.
  2. Import the files in your code using import { ... } from './path/to/your/local/uu/...
  3. (optional) Run deno run -A --reload jsr:@timepp/uu/install at any time to upgrade the files to the latest version.

Reusing script components

Simply `import * as uu from 'jsr:@timepp/uu' in Deno environment.

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@timepp/uu

Import symbol

import * as uu from "@timepp/uu";
or

Import directly with a jsr specifier

import * as uu from "jsr:@timepp/uu";

Add Package

pnpm i jsr:@timepp/uu
or (using pnpm 10.8 or older)
pnpm dlx jsr add @timepp/uu

Import symbol

import * as uu from "@timepp/uu";

Add Package

yarn add jsr:@timepp/uu
or (using Yarn 4.8 or older)
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";