You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/pkgs/@duckdb/node-api/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
An API for using [DuckDB](https://duckdb.org/) in [Node](https://nodejs.org/).
4
4
5
-
This is a high-level API meant for applications. It depends on low-level bindings that adhere closely to DuckDB's C API, available separately as [@duckdb/duckdb-bindings](https://www.npmjs.com/package/@duckdb/node-bindings).
5
+
This is a high-level API meant for applications. It depends on low-level bindings that adhere closely to [DuckDB's C API](https://duckdb.org/docs/api/c/overview), available separately as [@duckdb/duckdb-bindings](https://www.npmjs.com/package/@duckdb/node-bindings).
6
6
7
7
## Features
8
8
9
9
### Main differences from [duckdb-node](https://www.npmjs.com/package/duckdb)
10
10
- Native support for Promises; no need for separate [duckdb-async](https://www.npmjs.com/package/duckdb-async) wrapper.
11
-
- DuckDB-specific API; not based on SQLite.
11
+
- DuckDB-specific API; not based on the [SQLite Node API](https://www.npmjs.com/package/sqlite3).
12
12
- Lossless & efficent support for values of all [DuckDB data types](https://duckdb.org/docs/sql/data_types/overview).
13
13
- Wraps [released DuckDB binaries](https://github.com/duckdb/duckdb/releases) instead of rebuilding DuckDB.
14
14
- Built on [DuckDB's C API](https://duckdb.org/docs/api/c/overview); exposes more functionality.
0 commit comments