β‘ Ultra fast dependencies updater for Node.js written in Rust! β‘
- Ultra fast
- Support for npm, pnpm, yarn and bun
- Interactive mode
- Autocomplete
- Colored updatable packages based on semver diff
- CLI utility flags
- Check global packages
- Monorepo support
β οΈ - Single packages update with filters
β οΈ - Non-interactive mode with different display formatting and infos (publish time, semver grouping )
β οΈ - Tarball and git url dependencies support
β οΈ - Private packages support
β οΈ
cargo install pushapp-cli
Run the following command in your Node.js project directory:
pushapp
Option | Description |
---|---|
-t , --target |
Determines the version to upgrade to |
-g , --global |
Check global packages |
-D , --development |
Check only devDependencies |
-P , --production |
Check only dependencies and optionalDependencies |
-h , --help |
Display help information |
-V , --version |
Display version information |
- Direct dependencies are updated to the latest stable version:
1.0.0
β1.2.0
- Prerelease versions are ignored by default.
- Use
--target pre
to include the highest pre-release versions (e.g.alpha
,beta
,rc
)
- Use
- Choose what level to upgrade to:
- With
--target semver
, update according to your specified semver version ranges:^1.1.0
β^1.9.99
- With
--target major
, strictly update the major version:1.0.0
β2.0.0
- With
--target minor
, strictly update the patch and minor versions (including major version zero):0.1.0
β0.2.1
- With
--target patch
, strictly update the patch version (including major version zero):0.1.0
β0.1.2
- With
--target [tag]
, update to the version published on the specified tag:- Example:
0.1.0
->0.1.1-canary.1
- The available target tags are
next
,canary
,rc
,beta
,alpha
. The default islatest
.
- Example:
- With
This project is licensed under the MIT License - see the LICENSE file for details.
Flavio Delgrosso