UNPKG

jsdb-server

Version:

JSDB Written using Chrome's V8, implemented in Node.js. Having as its main objectives to be: simple, minimalist and effective for data persistence. In addition to easy integration with other programming languages.

34 lines (23 loc) 544 B
const /*--- Declaring imports ---*/ _install = require('./services/install'), _uninstall = require('./services/uninstall'), _start = require('./services/start'), _stop = require('./services/stop'), _server = require('./transport/server'); module.exports = { install : function(){ _install.execute(); }, uninstall : function(){ _uninstall.execute(); }, start : function(){ _start.execute(); }, stop : function(token){ _stop.execute(token); }, router : function(){ return _server.router(); } };