A vfox plugin for installing npm packages as tools.
mise plugin install vfox-npm https://github.com/jdx/vfox-npmThis plugin allows you to install npm packages as tools using the vfox-npm:package format.
# Install prettier
mise install vfox-npm:prettier@latest
# Use prettier
mise x vfox-npm:prettier -- prettier --version
# Install specific version
mise install vfox-npm:eslint@8.0.0
# List available versions
mise ls-remote vfox-npm:prettierThis plugin implements the vfox backend interface to:
- List versions: Fetches available versions from the npm registry
- Install packages: Uses
npm installto install packages locally - Set environment: Adds
node_modules/.binto PATH for binary access
- Node.js and npm must be installed on your system
- This plugin requires the latest version of mise with vfox backend support
MIT