Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions get-started/get-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. 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

### How to bypass authorization checks?
Expand Down
Loading