0.6.0 • Published 1 year ago

@axesilo/avocado v0.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Avocado

A simplified interface to the MongoDB Node.js driver.

Example usage:

import { Db } from "@axesilo/avocado";

new Db()
  .getAll("projects")
  .then((projects) => {
    console.log(projects);
    process.exit(0);
  })
  .catch(console.error);

Philosophy

  • Bias for the most common operations, setting reasonable defaults.
  • Use flexible types and class-based patterns over generics and strict typing. One of the advantages of using a NoSQL document store like MongoDB (over a relational database, say) is its flexibility.
0.6.0

1 year ago

0.5.0

1 year ago

0.4.2

1 year ago

0.4.1

1 year ago

0.4.0

1 year ago

0.3.0

1 year ago

0.2.0

1 year ago

0.1.0

1 year ago