data-synth

0.7.16 • Public • Published

data-synth

Dynamic data model synthesizer that can represent hierarchical data structures with dynamic getter/setter interfaces, data normalizers, validators, serializers with flexible class extensions using Meta data class objects for node.

NPM Version NPM Downloads

Installation

$ npm install data-synth

Basic Usage

DS = require 'data-synth'
 
class Song extends DS.Model
  @name: @attr 'string'
  
class MusicLibrary extends DS.Model
  @songs: @hasMany Song
 
music = new MusicLibrary
music.set 'songs'[ (new Song name: 'November Rain') ]
music.serialize()

Advanced Usage

For advanced usage examples, be sure to check out yangforge where data-synth is utilized for metacompilation of YANG schemas to auto-generate runtime data model instances, which in turn enables auto-generation of various interfaces (such as CLI, HTTP/REST/JSON, etc.)

Literate Coffeescript Documentation

Container Entities

Property Entities

Other Entities

License

MIT

Dependents (1)

Package Sidebar

Install

npm i data-synth

Weekly Downloads

22

Version

0.7.16

License

MIT

Last publish

Collaborators

  • corenova