DAL (Data Access Layer) - a proxy for SQL databases with MongoDB inspired query interface
Find a file
Anton Nesterov c665c1c2fb
[feat] nodejs bindings
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 13:09:35 +02:00
binding [feat] nodejs bindings 2024-08-20 13:09:35 +02:00
dal [feat] test nodejs bindings 2024-08-20 03:36:41 +02:00
doc [feat] sqlite server facade 2024-08-17 18:53:58 +02:00
pkg [feat] test nodejs bindings 2024-08-20 03:36:41 +02:00
.gitignore [feat] test nodejs bindings 2024-08-20 03:36:41 +02:00
binding.gyp [feat] nodejs bindings 2024-08-20 13:09:35 +02:00
bun.lockb [feat] test nodejs bindings 2024-08-20 03:36:41 +02:00
go.mod [wip] dal golang 2024-08-07 21:16:40 +02:00
package.json [feat] nodejs bindings 2024-08-20 13:09:35 +02:00
README.md [doc] initial docs 2024-08-16 06:18:45 +02:00
tsconfig.json [wip] nodejs client 2024-08-15 10:20:11 +02:00

DAL [WIP]

Data Accees Layer for SQL databases written in Go.

NodeJs Client

Mongodb inspired query interface:

const query = Db.In("users")
  .Find({
    fullname: { $glob: "*son" },
  })
  .Query();

// Result:
console.log(users)[
  ({ id: 25, fullname: "John Menson" }, { id: 76, fullname: "John Johnson" })
];