-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
46 lines (40 loc) · 875 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var Database = require('./lib/db');
var Model = require('./lib/model');
var utils = require('./lib/utils');
/**
*
* Module Object.
*/
var rom = {
/**
*
* Creates a database instance
* @param {String} name
* @param {redisClient} client
*/
createDatabase: function(name, client) {
// Create client instance if no client is provided.
if (!client) {
// Require redis at this point. Use user redis.
var redis = require('redis');
client = redis.createClient();
}
return new Database(name, client);
},
/**
*
* Convenience property for accessing the Database object
*/
Database: Database,
/**
*
* Convenience property for accessing the Model object
*/
Model: Model,
/**
*
* Convenience property for accessing the utility library
*/
utils: utils
};
module.exports = exports = rom;