https://github.com/zhengbangbo/check
A tool to check if your Node.js, Deno, and Rust versions are up to date.
https://github.com/zhengbangbo/check
command-line-tool deno version-control version-manager
Last synced: about 2 months ago
JSON representation
A tool to check if your Node.js, Deno, and Rust versions are up to date.
- Host: GitHub
- URL: https://github.com/zhengbangbo/check
- Owner: zhengbangbo
- License: mit
- Created: 2025-03-06T16:48:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-10T05:00:54.000Z (about 1 year ago)
- Last Synced: 2025-12-08T06:00:49.243Z (7 months ago)
- Topics: command-line-tool, deno, version-control, version-manager
- Language: TypeScript
- Homepage: https://jsr.io/@bob/check
- Size: 155 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @bob/check [](https://jsr.io/@bob/check)
A tool to check if your Node.js, Deno, and Rust versions are up to date.

## Installation
Run the following command to install:
```bash
deno install -g -A jsr:@bob/check
```
> The `-g` flag installs a package or script as a globally available executable.
> The `-A` flag grants all permissions to the tool.
If you want to update the tool, run:
```bash
deno install -g -A -f -r jsr:@bob/check
```
> The `-f` flag is used to forcefully overwrite an existing installation.
> The `-r` flag is used to reload the source code cache, triggering a recompilation of TypeScript.
## Usage
Run the tool:
```bash
check
```
## Uninstall
Run the following command to uninstall:
```bash
deno uninstall -g check
```
## License
[MIT](./LICENSE) Copyright © 2025-PRESENT [Bob Zheng](https://github.com/zhengbangbo)