azul
v0.0.1-alpha.15
Published
Elegant ORM for Node.js
Downloads
17
Maintainers
Readme
Azul
Azul has been built from the ground up to be the most expressive ORM for Node.js.
Get Started
$ npm install azul -g
$ npm install azul
$ azul init
The current release of Azul.js is a functional alpha. We're looking for feedback at this point, so please look at the docs and give it a try.
We're focusing on creating an expressive, well documented public API and reaching feature parity with other ORM tools. If you're interested in helping, please reach out.
Addons
A few additional components that you can use with Azul.js are:
- Azul.js Express Middleware & decorators for Express
- Azul.js Logger Logs queries being executed
- Azul.js Tracker Reports queries that were created, but never executed
Testing
Simply run npm test
to run the full test suite.
This build currently connects to databases for testing purposes. To replicate this on your machine, do the following:
Postgres
$ createuser -s root
$ psql -U root -d postgres
> CREATE DATABASE azul_test;
> \q
MySQL
$ mysql -u root
> CREATE DATABASE azul_test;
> exit
Documentation
Generate and access documentation locally:
$ jsdoc --private -c jsdoc.json
$ open out/index.html
License
This project is distributed under the MIT license.