1.1.1 • Published 11 years ago

json-fs v1.1.1

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

json-fs

Build Status NPM version Coverage Status

convert JSON to files and directories and back

Getting Started

(Note: npm module has not yet been submitted)

Install the module with: npm install json-fs

Refer to it in Node.JS with: require('json-fs')

Documentation

Whilst a JSON document containing only a Null, Boolean, Number or String may be considered valid for other purposes, JSON-FS is only intended for use with valid JSON documents that specify an Array or Object.

Generating API Documentation

You may build the documentation using JSDoc3 with the following grunt task (note this requires Java and JAVA_HOME to be set):

grunt doc

The HTML documentation will be built in the doc/jsdoc directory.

Examples

FSBuilder

var fsBuilder = new require('json-fs').FSBuilder();
fsBuilder.setSource({ object: 'or array', [ 'to', 'store', 'as', 'files' ] });
fsBuilder.setOutput('/path/to/output/directory')
fsBuilder.build(function (err) {
  if (err) {
    throw err;
  }
  // otherwise, the contents of the directory have been built!
});

JSONBuilder

var jsonBuilder = new require('json-fs').JSONBuilder();
jsonBuilder.setSource('/path/to/input/directory')
jsonBuilder.build(function (err, result) {
  if (err) {
    throw err;
  }
  // otherwise, result will be an Object or Array as per the directory
});

Contributing

Formal style-guide for this project is JSLint. See JSLint settings at the top of each file.

Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

grunt test

This project uses Git Flow, so the master branch always reflects what is in production (i.e. what is in the NPM repository). New code should be merged into the develop branch.

Release History

See GitHub Releases

License

Copyright (c) 2013 Ron Waldon Licensed under the MIT license.

1.1.1

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago