Download Latest Version Pixcode v1.39.2 source code.tar.gz (2.7 MB)
Email in envelope

Get an email when there's a new version of pixcode

Home / v1.31.6
Name Modified Size InfoDownloads / Week
Parent folder
Pixcode-Setup-1.31.6.exe 2026-04-24 187.9 MB
Pixcode-1.31.6-amd64.deb 2026-04-24 187.0 MB
Pixcode-1.31.6-x86_64.AppImage 2026-04-24 250.0 MB
Pixcode-1.31.6-arm64.dmg 2026-04-24 216.2 MB
Pixcode-1.31.6-x64.dmg 2026-04-24 220.9 MB
README.md 2026-04-24 1.7 kB
v1.31.6 -- definitive fix for _Cannot find package ws_ boot error source code.tar.gz 2026-04-24 2.5 MB
v1.31.6 -- definitive fix for _Cannot find package ws_ boot error source code.zip 2026-04-24 2.8 MB
Totals: 8 Items   1.1 GB 0

The real fix for the boot error

1.31.5 turned off ASAR, which was necessary but not sufficient. The root cause was actually one level deeper: the writable userData runtime directory where the forked server lives had no node_modules at all. Node's ESM loader then threw Cannot find package 'ws' because it had nowhere to resolve from. NODE_PATH is legacy and Node's ESM loader quietly ignores it on Windows in Electron-bundled installs.

Fix in 1.31.6 is surgical: the installer now creates a junction (Windows) / symlink (Unix) from runtime/node_modules to the bundled dependency tree. Zero disk cost, instant, works on every filesystem we've tested. If the OS rejects the link (corporate policy, weird mount), the installer falls back to a full copy so the app always boots.

Idempotent on subsequent launches: we detect a healthy link via node_modules/ws/package.json and skip the re-setup.

Install

⏳ Installers building (~10 min), refresh shortly:

  • WindowsPixcode-Setup-1.31.6.exe
  • macOSPixcode-1.31.6-arm64.dmg · Pixcode-1.31.6-x64.dmg
  • LinuxPixcode-1.31.6-x86_64.AppImage · Pixcode-1.31.6-amd64.deb

Or via npm:

:::bash
npm install -g @pixelbyte-software/pixcode@1.31.6
pixcode

Upgrading from 1.31.5

Uninstall 1.31.5 first (it will not auto-update itself because that codepath needs the server to be running). Your sessions, tokens, and paired accounts under ~/.pixcode/ stay intact. Install 1.31.6. This should be the last 'please uninstall and reinstall' step — from here on, product updates flow through the in-app update path without any installer redownload.

Source: README.md, updated 2026-04-24