verche
v0.1.4
Published
Quickly check versions of your toolchains.
Readme
verche
verche: Version Checker
Quickly check versions of your toolchains.
Why verche?
I think I'm a little obsessive-compulsive about keeping my dev toolchains newest(or at latest LTS version), like node, uv, git and etc. I'm always checking versions from the official sites of them.
So, why not to check them together?
Usage
[!IMPORTANT] Currently support: node, rust, git, uv, brew.
If you have connection issue, use proxy.
No need to install, run it with npx.
See npx verche --help for usage.
Example:
# list all supported tools
# alias for list: ls
npx verche list
# check all supported tools.
# alias for check: chk
npx verche check
# check specific tool, -n: --name
npx verche check -n rusthttps://github.com/user-attachments/assets/72e30149-125e-4634-8e54-cdf79bb3bca4
Use as a library
You can also use it as a library:
npm i vercheimport { getGitVersions, getNodeVersions, getRustVersions, ... } from "verche";
// get value: { current: 'xxx', latest: 'xxx', latestLTS(if exists): 'xxx' }
const gitVersions = await getGitVersions()
const nodeVersions = await getNodeVersions()
const rustVersions = await getRustVersions()
...License
MIT License © 2026-PRESENT Vincent-the-gamer
