Deno Module Manager
dmm
is a Deno module manager. It can update your deps.ts
file, check if any of your dependencies are out of date, and give you information about any module in the Deno world. Managing your dependencies hasn't been easier.
Features
- Zero dependencies
- Easy and simple to use
- Checks dependencies for newer versions
- Will update your dependencies for you
- Gives information on modules
- Accounts for 3rd party and Deno Standard modules
- Installation is optional
- No variants of
node_modules
andpackage.json
- No extra configuration around import maps
Getting Started
Get started here with a basic example.
How It Works
dmm reads the deps.ts
file at the current working directory -- checking versioned import
and export
statements and checking to see if they can be updated. If any dependency can be updated, it lets you know which ones can be updated; and if you want to update them, dmm will rewrite your deps.ts
file so that your dependencies reflect their latest versions.
Note: nest.land may not reflect the latest Deno Standard Modules version immediately after Deno releases a new version. Please keep this in mind when importing your modules via nest.land.
Want to contribute? Follow the Contributing Guidelines here. All code is released under the MIT License.