From 5514f965e64bb6ed2c4607ac559f59be1e135eee Mon Sep 17 00:00:00 2001 From: Daniel O'Grady <103028279+daogrady@users.noreply.github.com> Date: Tue, 9 Jun 2026 14:55:11 +0200 Subject: [PATCH 1/2] Update get-help.md --- get-started/get-help.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/get-started/get-help.md b/get-started/get-help.md index 2704d41c6e..18308432ff 100644 --- a/get-started/get-help.md +++ b/get-started/get-help.md @@ -301,6 +301,12 @@ Even with this dependency added, on macOS and Linux the built-in implementation +### How to fix "`Error: Could not locate the bindings file. Tried: ...`" + +You probably have `ignore-scripts` set to `true` in your npm configuration. While this is generally a good idea, it prevents certain libraries, like `better-sqlite3`, from running a required postinstall script. +To solve this, you can either _temporarily_ allow scripts and run a reinstall, or manually run the build script for the library in question. In the case of `better-sqlite3`, this would be running `npm run build-release` from within the _node_modules/better-sqlite3_ directory. The relevant _node_modules_ directory can be found in the first line after the error message. + + ## Java ### How to bypass authorization checks? From 6c1e318b7c27fbd8a30e2503b8f6e770c4b17284 Mon Sep 17 00:00:00 2001 From: Daniel O'Grady <103028279+daogrady@users.noreply.github.com> Date: Wed, 10 Jun 2026 07:18:13 +0200 Subject: [PATCH 2/2] Update get-started/get-help.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: René Jeglinsky --- get-started/get-help.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-started/get-help.md b/get-started/get-help.md index 18308432ff..96b2743575 100644 --- a/get-started/get-help.md +++ b/get-started/get-help.md @@ -303,8 +303,8 @@ Even with this dependency added, on macOS and Linux the built-in implementation ### How to fix "`Error: Could not locate the bindings file. Tried: ...`" -You probably have `ignore-scripts` set to `true` in your npm configuration. While this is generally a good idea, it prevents certain libraries, like `better-sqlite3`, from running a required postinstall script. -To solve this, you can either _temporarily_ allow scripts and run a reinstall, or manually run the build script for the library in question. In the case of `better-sqlite3`, this would be running `npm run build-release` from within the _node_modules/better-sqlite3_ directory. The relevant _node_modules_ directory can be found in the first line after the error message. +You probably have `ignore-scripts` set to `true` in your npm configuration. While this is generally a good idea, it prevents certain libraries, like `better-sqlite3`, from running a required postinstall script. +To solve this, you can either temporarily allow scripts and run a reinstall, or manually run the build script for the library in question. For `better-sqlite3`, run `npm run build-release` from within the _node_modules/better-sqlite3_ directory. The first line after the error message shows the relevant _node_modules_ directory. ## Java