https://github.com/ikasoba/depm
tiny package manager for deno
https://github.com/ikasoba/depm
deno package-manager
Last synced: about 1 month ago
JSON representation
tiny package manager for deno
- Host: GitHub
- URL: https://github.com/ikasoba/depm
- Owner: ikasoba
- License: mit
- Created: 2023-07-31T09:02:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-10T12:35:26.000Z (almost 3 years ago)
- Last Synced: 2025-02-05T14:47:08.038Z (over 1 year ago)
- Topics: deno, package-manager
- Language: TypeScript
- Homepage: https://deno.land/x/depm
- Size: 53.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
depm 📦
tiny package manager for deno
# Installation
```sh
deno install -n depm https://deno.land/x/depm/cli.ts --import-map https://deno.land/x/depm/import_map.json -A
```
# Upgrade
```sh
depm upgrade
```
# Usage
# Install from deno.land
```sh
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
```sh
depm add npm:express
depm add npm:@ikasoba000/daizu
```
# Install from esm.sh
```sh
depm add esm:express
depm add esm:chai
```
# Install from github
```sh
depm add gh:tajpouria/cors
depm add gh:colinhacks/zod/deno/lib
```
# Install from nest.land
```sh
# Version notation is required
depm add nest:opine@2.3.4
depm add nest:std@0.127.0/fs
```
# Install from url
```sh
depm add url:react=https://esm.sh/react
```
# Uninstall Package
```sh
depm remove hono
depm remove fs
depm remove fmt/colors.ts
```