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) 233 B
'use strict'; class User { constructor(token, name, mail, roles, creationDate){ this.token = token this.name = name; this.roles = roles; this.mail = mail; this.creationDate = creationDate; } } module.exports = User;