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

json-minifier

Package Overview
Dependencies
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-minifier

A two-way JSON minifier to reduce JSON size and amount of data transferred on clients. Can also act as an obfuscator.

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by33.33%
Maintainers
4
Weekly downloads
 
Created
Source

node-json-minifier

A two-way JSON minifier to reduce JSON size and amount of data transferred on clients. Can also act as an obfuscator.

how to use

npm install json-minifier

Compressor

var specs = {
  key: 'k',
  MySuperLongKey: 'm',
  SomeAnotherPropertyThatIsRealyLong: 's'
};

var minifier = require('json-minifier')(specs);

var json = minifier.minify({
  SomeAnotherPropertyThatIsRealyLong: 1234,
  MySuperLongKey: 'Home',
  key: 0
});

/*
{ s: 1234,
  m: 'Home',
  k: 0 } 
*/
console.log(json);

Uncompressor

Using the json object from the previous exemple:

/*
{
  SomeAnotherPropertyThatIsRealyLong: 1234,
  MySuperLongKey: 'Home',
  key: 0
}
*/
console.log(minifier.unminify(json));

Use in browser

You can implement your own, don't need to require our module or use browserify. Use the following snippet:

json is your compressed json, and you exposed your compression table in the reverseJsonFilters array.

function unzip(json) {
  for (var key in json) {
    if (typeof json[key] === 'object') {
      unzip(json[key]);
    } 
    if (reverseJsonFilters[key] !== undefined) {
      json[reverseJsonFilters[key]] = json[key];
      delete json[key];
    }
  }
}

FAQs

Package last updated on 13 Mar 2018

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