0.0.1 • Published 9 years ago

json-string v0.0.1

Weekly downloads
101
License
-
Repository
github
Last release
9 years ago

json-string

A JSON formatter with support for sorting keys and more.

Install

$ npm install --save json-string

Example

var json = require('json-string');

var string = json({
  hello: 'world',
  foo: 'bar',
  number: 5
});

console.log(string);
// {
//   "foo": "bar",
//   "hello": "world",
//   "number": 5
// }

API

json(input, options)

Formats the input value as a string. (any value can be passed for input, not just objects)

Available options:

  • replacer (function) - Used to format object properties. (see docs)
  • sortKeys (boolean) - If set to false, object keys will not be sorted.
  • spaces (number) - Used to set indentation levels. (see docs)

json.defaults

Exposed to allow for overriding the default options.