denolib / awesome-deno

Curated list of awesome things related to Deno

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some modules for Deno, write by myself.

BoltDoggy opened this issue · comments

https://deno.boltdoggy.com/

  • dpm - deno package manager, install global command for deno.
  • dcc - deno cache clean, reloading deps when next running.

dpm

deno package manager, install global command for deno.

# install
deno https://deno.boltdoggy.com/x/dpm/install.js

# using
dpm <remote_url> <command_name> # install command of this remote_url to global
# more examples, you can see `dcc install`.

dcc

deno cache clean, reloading deps when next running.

# install
dpm https://deno.boltdoggy.com/x/dcc/mod.js dcc

# using
dcc <remote_url> # remove cache for this remote_url
# or
dcc --all # or dcc -a, remove all cache

Looks great! Could you submit a PR that add links to your repositories? Thanks!

Thank you for submitting PR!