DAL (Data Access Layer) - a proxy for SQL databases with MongoDB inspired query interface
Find a file
Anton Nesterov 7a408c9941
[ref] refactor paths manually
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 21:25:15 +02:00
binding [ref] refactor paths manually 2024-08-20 21:25:15 +02:00
dal [ref] refactor paths manually 2024-08-20 21:25:15 +02:00
doc [feat] sqlite server facade 2024-08-17 18:53:58 +02:00
pkg [ref] refactor paths manually 2024-08-20 21:25:15 +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 [chore] preinstall,postinstall 2024-08-20 19:23:09 +02:00
go.mod [ref] refactor paths manually 2024-08-20 21:25:15 +02:00
go.sum [ref] refactor paths manually 2024-08-20 21:25:15 +02:00
main.go [ref] mod paths 2024-08-20 19:34:01 +02:00
package.json [chore] preinstall,postinstall 2024-08-20 19:23:09 +02:00
README.md [doc] initial docs 2024-08-16 06:18:45 +02:00
tsconfig.json [chore] preinstall,postinstall 2024-08-20 19:23:09 +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" })
];