google-datastore-emulator
Version:
NodeJs wrapper to google datastore emulator. It could start and stop emulator as node module
16 lines (14 loc) • 464 B
JavaScript
const BOOTSTRAPPING = 'bootstrapping';
const RUNNING = 'running';
const WAITING_FOR_EXIT = 'waiting-for-exit';
const EXIT = 'exit';
const CLOSE = 'close';
const ERROR = 'error';
const STOPPING = 'stopping';
module.exports.BOOTSTRAPPING = BOOTSTRAPPING;
module.exports.RUNNING = RUNNING;
module.exports.WAITING_FOR_EXIT = WAITING_FOR_EXIT;
module.exports.EXIT = EXIT;
module.exports.CLOSE = CLOSE;
module.exports.ERROR = ERROR;
module.exports.STOPPING = STOPPING;