1.0.0 • Published 9 years ago

js2model v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

js2model

Converts a JSON schema file to one or multiple model files. In this version model files can be JavaScript files or C# model files. The model files will contain POJO / POCO classes.

Installation

npm install js2model --save

Usage

var js2model = require('js2model.js'); var options = new js2model.Options(); options.rootModelName = "Store"; js2model.convert('./resources/store.schema.json', options);

Tests

npm test

Release History

  • 0.1.0 Initial release