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.

19 lines (14 loc) 208 B
'use strict'; class Response{ constructor(type, data){ this.type = type; this.data = data; } getType() { return this.type; } getData() { return this.data; } } module.exports = Response;