json-string-formatter
v1.0.1
Published
A json string formatter with zero dependency.
Downloads
22,766
Maintainers
Readme
JSON String Formatter
A lightweight JSON string formatter which can prettify your JSON string without parsing it to object.
Install
npm install --save json-string-formatter
or
yarn add json-string-formatter
Usage
- Import
const { format } = require('json-string-formatter';
// or
const jsonFormatter = require('json-string-formatter');
jsonFormatter.format(...)
- Basic usage
let input = "{'text': 'hello world!'}";
let output = format(input);
/**
* output = `{
* 'text': 'hello world!'
* }`
* /
- Customized indent and linebreak
let input = "{'text': 'hello world!'}";
let output = format(input, /* indent */ '--', /* linebreak */ '|');
/**
* output = `{|--'text': 'hello world!'|}`
*/