npm-utils 0.5.0

Pure-Rust utilities for the npm registry: resolve a package version, download npm tarballs and GitHub archives, and extract files.
Documentation
1
2
3
4
5
6
//! The `npm-utils` command-line tool. Requires the `cli` feature
//! (`cargo install npm-utils --features cli`).

fn main() -> std::process::ExitCode {
    npm_utils::cli::main_with(std::env::args_os())
}