Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsoncomma

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsoncomma

JSON with trailing commas for happy diffs

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

jsoncomma.js

Similar to JSON but with trailing commas. Because you like diffs to be minimal and are fed up with JSON.parse SyntaxError exceptions.

I wrote it in anger.

Usage

> var jsoncomma = require("jsoncomma");
> var str = jsoncomma.stringify({kramer:"yoyoma", hello:[4,2]}, null, 4);
> console.log(str);
{
    "kramer": "yoyoma",
    "hello": [
        4,
        2,
    ],
}

> jsoncomma.parseUnsafe(str));
{ kramer: 'yoyoma', hello: [ 4, 2 ] }

parseUnsafe is called that for a reason so only feed it trusted data. parseUnsafe is just a wrapper around new Function.

jsoncomma.parseUnsafe(str) does not support a reviver (the second JSON.parse argument).

jsoncomma.stringify(v, ignored_replacer, space) requires a null replacer and a numeric space. It always pretty-prints.

Contribute

parseSafe maybe? That would be sweet. It should work on large and complex input. If it's also fast then that's a plus.

Installation

Node

Install using npm

npm install jsoncomma

Browser

Clone the repo and include it in a script tag (or just use Browserify)

git clone https://github.com/olov/jsoncomma.git
<script src="jsoncomma/jsoncomma.js"></script>

License

MIT, see LICENSE file.

Keywords

FAQs

Package last updated on 13 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc