depm 📦
tiny package manager for deno
Installation
deno install -n depm https://deno.land/x/depm/cli.ts --import-map https://deno.land/x/depm/deno.json -A
Upgrade
depm upgrade
Usage
Install from deno.land
depm add hono
depm add std/fs
depm add std/fmt/colors.ts
# or
depm add deno:hono
depm add deno:std/fs
depm add deno:std/fmt/colors.ts
Install from npm
depm add npm:express
depm add npm:@ikasoba000/daizu
Install from esm.sh
depm add esm:express
depm add esm:chai
Install from github
depm add gh:tajpouria/cors
depm add gh:colinhacks/zod/deno/lib
Install from nest.land
# Version notation is required
depm add nest:opine@2.3.4
depm add nest:std@0.127.0/fs
Install from url
depm add url:react=https://esm.sh/react
Uninstall Package
depm remove hono
depm remove fs
depm remove fmt/colors.ts