I'm working with a Linux i386 (ia32) System and need Node-Sqlite3 binaries for it. I saw the package not officially supports 32-Bit Linux and want to build the binaries on my own. The GitHub page states that "If your environment isn't supported, it'll use node-gyp to build SQLite, but you will need to install a C++ compiler and linker."
I tried the following command: "./node_modules/.bin/node-pre-gyp install --directory=./node_modules/sqlite3 --target_platform=linux --target_arch=ia32 --update-binary"
, but got the error
"node-pre-gyp ERR! install response status 404 Not Found on https://github.com/TryGhost/node-sqlite3/releases/download/v5.1.4/napi-v6-linux-unknown-ia32.tar.gz
node-pre-gyp ERR! install error"
Does anyone have a good Documentation or List of instruction on how to build this?