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.

14 lines (11 loc) 235 B
"use strict"; class Resource{ constructor(name, path, doIt,middleware, context){ this.name = name; this.path = path; this.doIt = doIt; this.middleware = middleware; this.context = context; } } module.exports = Resource;