Node.js
Fased recommends Node 24 and supports Node 22.14 or newer with the built-innode:sqlite module. The installer script will detect and install Node automatically — this page is for when you want to set up Node yourself and make sure everything is wired up correctly.
Check your version
v24.x or v22.14.x or higher and node:sqlite ok, you’re good. If Node isn’t installed, the version is too old, or node:sqlite is missing, pick an install method below. Some custom/version-manager Node builds can report a new version but still omit node:sqlite; those are not suitable for full memory support.
Install Node
- macOS
- Linux
- Windows
Using a version manager (nvm, fnm, mise, asdf)
Using a version manager (nvm, fnm, mise, asdf)
Troubleshooting
fased: command not found
The public installer does not depend on a global npm package. It writes a small
repo-backed launcher to ${FASED_CLI_BIN_DIR:-$HOME/.local/bin}/fased.
This error usually means that directory is not on your PATH, or your shell has
not reloaded its startup files yet.
Check if it's on your PATH
$HOME/.local/bin in the output. If you used
FASED_CLI_BIN_DIR, look for that directory instead.Advanced: npm global prefix problems
Direct npm global installation is not the public setup path yet. This only matters if you are doing your own package-manager experiment or installing a skill dependency with npm. If you seeEACCES errors from a manual npm install -g, switch npm’s global
prefix to a user-writable directory:
export PATH=... line to your ~/.bashrc or ~/.zshrc to make it permanent.