nedb-engine 8.8.8 → 8.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -9
- package/nedb.darwin-arm64.node +0 -0
- package/nedb.darwin-x64.node +0 -0
- package/nedb.linux-arm64-gnu.node +0 -0
- package/nedb.linux-arm64-musl.node +0 -0
- package/nedb.linux-x64-gnu.node +0 -0
- package/nedb.linux-x64-musl.node +0 -0
- package/nedb.win32-x64-msvc.node +0 -0
- package/nedbd-v2-darwin-arm64 +0 -0
- package/nedbd-v2-darwin-x64 +0 -0
- package/nedbd-v2-linux-arm64 +0 -0
- package/nedbd-v2-linux-arm64-musl +0 -0
- package/nedbd-v2-linux-x64 +0 -0
- package/nedbd-v2-linux-x64-musl +0 -0
- package/nedbd-v2-win-x64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -171,18 +171,25 @@ evaluator with no flag to set, the `nesql` CLI likewise.
|
|
|
171
171
|
[](https://crates.io/crates/nesql)
|
|
172
172
|
[](https://www.npmjs.com/package/nesql-engine)
|
|
173
173
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
174
|
+
The three neSQL packages are **real and version-aligned with the engine** — the
|
|
175
|
+
badges above are live registry state, not placeholders. They split by delivery
|
|
176
|
+
path, not by function:
|
|
177
|
+
|
|
178
|
+
| package | registry | what it is |
|
|
179
|
+
|---|---|---|
|
|
180
|
+
| [`nesql`](https://crates.io/crates/nesql) | crates.io | **the real CLI crate** — `cargo add nesql`, builds against the registry engine |
|
|
181
|
+
| [`nesql`](https://pypi.org/project/nesql/) | PyPI | the language reference (vendored-grammar facts, clause extensions) |
|
|
182
|
+
| [`nesql-engine`](https://www.npmjs.com/package/nesql-engine) | npm | the language reference |
|
|
183
|
+
|
|
184
|
+
The [neSQL repository](https://github.com/Eth-Interchained/neSQL) is the language's
|
|
185
|
+
home: the vendored PostgreSQL grammar with its licence intact, the CLI crate source,
|
|
186
|
+
the NQL grammar reference, and the NEDB specs. And because the CLI is also staged
|
|
187
|
+
into every platform build of the engine (below), **one install carries everything**:
|
|
181
188
|
|
|
182
189
|
### `nesql` — the CLI, and it speaks neSQL
|
|
183
190
|
|
|
184
|
-
Ships inside `pip install nedb-engine` — no daemon, no port
|
|
185
|
-
halves of the language through **one** `query` command:
|
|
191
|
+
Ships inside `pip install nedb-engine` — no daemon, no port, the compiled binary on
|
|
192
|
+
your PATH — and answers both halves of the language through **one** `query` command:
|
|
186
193
|
|
|
187
194
|
```console
|
|
188
195
|
$ nesql --db ./store query "SELECT who, total FROM orders ORDER BY total DESC"
|
package/nedb.darwin-arm64.node
CHANGED
|
Binary file
|
package/nedb.darwin-x64.node
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/nedb.linux-x64-gnu.node
CHANGED
|
Binary file
|
package/nedb.linux-x64-musl.node
CHANGED
|
Binary file
|
package/nedb.win32-x64-msvc.node
CHANGED
|
Binary file
|
package/nedbd-v2-darwin-arm64
CHANGED
|
Binary file
|
package/nedbd-v2-darwin-x64
CHANGED
|
Binary file
|
package/nedbd-v2-linux-arm64
CHANGED
|
Binary file
|
|
Binary file
|
package/nedbd-v2-linux-x64
CHANGED
|
Binary file
|
package/nedbd-v2-linux-x64-musl
CHANGED
|
Binary file
|
package/nedbd-v2-win-x64.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nedb-engine",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.9",
|
|
4
4
|
"description": "NEDB \u2014 hash-chained, time-traveling, bi-temporal embedded database with Rust native core. SQL, Redis, MongoDB adapters. Causal Write Provenance. RESP2 wire protocol.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|