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.

12 lines (8 loc) 119 B
'use strict'; class Package{ constructor(){ this.values = {}; this.size = 0; } } module.exports = Package;