npm i in a pnpm project, again? Sh*t!
nyxi - use the right package manager
npm i -g @nyxb/nyxi
Creates a prompt to choose between package.json and tsconfig.json and generates the file when selected.
nyxi
# npm install
# yarn install
# pnpm install
# bun installnyxi preact
# npm i preact
# yarn add preact
# pnpm add preact
# bun add preactnyxi @types/node -D
# npm i @types/node -D
# yarn add @types/node -D
# pnpm add -D @types/node
# bun add -d @types/nodenyxi --frozen
# npm ci
# yarn install --frozen-lockfile (Yarn 1)
# yarn install --immutable (Yarn Berry)
# pnpm install --frozen-lockfile
# bun install --no-savenyxi -g eslint
# npm i -g eslint
# yarn global add eslint (Yarn 1)
# pnpm add -g eslint
# bun add -g eslint
# this uses default agent, regardless your current working directorynyxr dev --port=3000
# npm run dev -- --port=3000
# yarn run dev --port=3000
# pnpm run dev --port=3000
# bun run dev --port=3000nyxrr
# interactively select the script to run
# supports https://www.npmjs.com/package/npm-scripts-info conventionnyxr -
# rerun the last commandnyxlx preact
# npx preact
# yarn dlx preact
# pnpm dlx preact
# bunx preactnyxu
# (not available for bun)
# npm upgrade
# yarn upgrade (Yarn 1)
# yarn up (Yarn Berry)
# pnpm updatenyxu -i
# (not available for npm & bun)
# yarn upgrade-interactive (Yarn 1)
# yarn up -i (Yarn Berry)
# pnpm update -inyxun unbuild
# npm uninstall unbuild
# yarn remove unbuild
# pnpm remove unbuild
# bun remove unbuildnyxun -g silent
# npm uninstall -g silent
# yarn global remove silent
# pnpm remove -g silent
# bun remove -g silentnyxci
# npm ci
# yarn install --frozen-lockfile
# pnpm install --frozen-lockfile
# bun install --no-saveif the corresponding node manager is not present, this command will install it globally along the way.
nyxa
# npm
# yarn
# pnpm
# bunnyxa run foo
# npm run foo
# yarn run foo
# pnpm run foo
# bun run foonyxi -C packages/foo preact
nyxr -C playground dev; ~/.nyxirc
; fallback when no lock found
defaultAgent=npm # default "prompt"
; for global installs
globalAgent=npm# ~/.bashrc
# custom configuration file path
export NYXI_CONFIG_FILE="$HOME/.config/nyxi/nyxirc"nyxi assumes that you work with lockfiles (and you should)
Before it runs, it will detect your yarn.lock / pnpm-lock.yaml / package-lock.json / bun.lockb to know current package manager (or packageManager field in your packages.json if specified), and runs the corresponding commands.