Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ The backend/server for the Fluent ecosystem built with Hono and OpenAPI. This is
npm install
```

> **Note (Node 24+):** A transitive dependency (`tree-sitter`, pulled in by
> `@antfu/eslint-config`'s markdown formatter) compiles a native addon
> against Node's V8 headers, which require C++20. If `npm install` fails
> with a `node-gyp` build error such as `error: "C++20 or later required."`,
> run the install with the C++20 standard enabled (this is what CI does):
>
> ```bash
> CXXFLAGS="-std=c++20" npm install
> ```
>
> This requires a C++ toolchain (e.g. `build-essential` on Debian/Ubuntu).

3. **Set up environment variables:**

```bash
Expand Down
Loading