You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
npm install --force could run, cannot measure how effective it is.
npm install by itself fails.
bun run server.ts
* npx tsx server.ts could be a replacement, though fails with ReferenceError: Bun is not defined. Websocket server hardly depends on Bun's runtime.
* The usage of npx tsx could be done with npm install -g tsx but installs "tsx" globally.
Setup details
Tried under Debian Linux 12 with kernel 6.1.0-41-amd64.
Node/npm installed manually through the official website to /opt/nodejs.
Edit: Stripped off "adding Node/npm equivalents of bun commands" from the issue title, since bun is a deeper dependency than just adding command counterparts.
There is not a trivial way of counterparting Bun runtime commands to Node/npm only commands.
References:
bun installnpm install --forcecould run, cannot measure how effective it is.npm installby itself fails.bun run server.ts*
npx tsx server.tscould be a replacement, though fails withReferenceError: Bun is not defined. Websocket server hardly depends on Bun's runtime.* The usage of
npx tsxcould be done withnpm install -g tsxbut installs "tsx" globally.Setup details
6.1.0-41-amd64./opt/nodejs.Edit: Stripped off "adding Node/npm equivalents of bun commands" from the issue title, since
bunis a deeper dependency than just adding command counterparts.