A simple CLI to easily check node versions
Install it globally:
npm add -g @raulfdm/node-versions
Then run:
node-versions <flag>
🌟 Node Versions CLI 🌟
Usage:
$ node-versions <flag>
Options:
--all Show all versions
--all-lts Show all LTS versions
--latest Show latest version
--latest-of Show latest version of a specific version
--lts Show current LTS version
Examples:
$ node-versions --all
$ node-versions --all-lts
$ node-versions --latest
$ node-versions --latest-of 20
$ node-versions --lts
- Make sure to have bun v1.0.25 or higher
- clone this repository
- install the dependencies:
bun install
- Do the changes on the files in
src/*
; - run the dev command:
bun run dev
If your change must be published:
- Run
bun changeset
- Select the type of version the change includes following semver logic
- Commit the changeset file alongside with your changes
- Open a PR
- Wait until it gets reviewed and approved