UNPKG

periodicjs.core.data

Version:

Core data is the ORM wrapping component of periodicjs.core.controller that provides database adapters for commonly used databases (ie. mongo, sql, postgres). Adapters provide a standard set of methods and options regardless of the type of database and so

9 lines (8 loc) 220 B
'use strict'; const path = require('path'); const mongo = require(path.join(__dirname, './mongo')); const loki = require(path.join(__dirname, './loki')); module.exports = { mongo: mongo.Changes, loki: loki.Changes };