# Flujos
A general database independent model CRUD library
Or, with Yarn:
After, in your code, simply add a database engine to get started with a particular database.
Any database, only one way.
Now you can perform any action platform and database independently.
Flujos is the middle in between you and your database engine.
To add to your project, using NPM, just open a terminal/batch and:
$ npm install flujos --save
Or, with Yarn:
$ yarn add flujos
After, in your code, simply add a database engine to get started with a particular database.
In your backend, just require the library and the database engine, then, create an object.
const Flujos = require('flujos');
const FlujosPouchDBEngine = require('flujos-pouchdb-engine');
var users = new Flujos('users', FlujosPouchDBEngine, {sync: true});
There are no documentation yet, you can just, get started by get a deep look into the library to see all methods available.
Help needed!
Please, consider to help to create the docs and dbengines, to get started, take a look on the boilerplate.