json-string

0.0.1 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i json-string

Weekly Downloads

46

Version

0.0.1

License

none

Last publish

Collaborators

  • dominicbarnes