Giter Site home page Giter Site logo

ersisk / json.prune Goto Github PK

View Code? Open in Web Editor NEW

This project forked from canop/json.prune

0.0 0.0 0.0 26 KB

A pruning version of JSON.stringify, allowing for example to stringify window or any big or recursive object

License: MIT License

JavaScript 64.99% HTML 35.01%

json.prune's Introduction

JSON.prune

Chat on Miaou Chat on Miaou

JSON.prune is a pruning JSON.stringify for the very specific cases where you need to stringify big or recursive javascript objects and don't really need the result to be complete.

var json = JSON.stringify(window); // fails
var json = JSON.prune(window); // builds a JSON valid string from a pruned version of the
                               // recursive, deep, and not totally accessible window object
var prunedWindow = JSON.parse(JSON.prune(window)); // builds a lighter acyclic version of window

JSON.prune also lets you, in case of need, stringify inherited and/or non enumerable properties.

JSON.prune(window.location, {inheritedProperties:true}); // without inherited properties, FireFox and IE only show an empty object

JSON.prune.log is a proxy over console.log deep cloning the objects (using JSON.prune) before logging them, in order to avoid the delay problem encountered on non primitive objects logging.

You should not use it frequently, only when you really need to see the objects how they were at logging time.

// make sure someObject is logged as it was at logging time
JSON.prune.log(someObject);

Project/Test page

dystroy.org/JSON.prune

Include it in a page

<script src=http://dystroy.org/JSON.prune/JSON.prune.js></script>

Use it with CommonJS or in node

var prune = require('json-prune');
var json = prune(obj);

Discussions

JavaScript room on Miaou

Customization: replace the "-pruned-" placeholder

Here's how are handled by default by JSON.prune the special values needing pruning:

Value Default
undefined Key and value are ommited (same as JSON.stringify)
function Key and value are ommited (same as JSON.stringify)
already written or too deep object (cycle prevention) The "-pruned-" string
array with too many elements Truncation: JSON.prune applied to only the start of the array

By specifiying a replacer or a prunedString in JSON.prune options, you can customize those prunings.

The replacer function takes 3 arguments:

  • the value to replace
  • the default replacement value
  • a boolean indicating whether the replacement is due to a cycle detection

Returning undefined makes JSON.prune ommit the property (name and value).

The default value makes it easy to just specify the specific behavior you want instead of implementing the whole standard replacement.

Example 1: Use an object instead of a string as pruning mark

var json = JSON.prune(obj, {prunedString: '{}' });

Note: if you want a string to be inserted, don't forget the double quotes, as in '"-pruned-"'.

Example 2: Silent Pruning

If you want the pruned properties to just be ommited, pass undefined as prunedString:

var obj = {a:3};
obj.self = obj;
var json = JSON.prune(obj);
console.log(json); // logs {"a":3,"self":"-pruned-"}
json = JSON.prune(obj, {prunedString: undefined });
console.log(json); // logs {"a":3}

Note: You get the same behavior with

json = JSON.prune(obj, {replacer: function(){}});

Example 3: Verbose Pruning

var options = {replacer:function(value, defaultValue, circular){
	if (circular) return '"-circular-"';
	if (value === undefined) return '"-undefined-"';
	if (Array.isArray(value)) return '"-array('+value.length+')-"';
	return defaultValue;
}};
var json = JSON.prune(obj, options);

Example 4: Function "serialization"

var options = {replacer:function(value, defaultValue){
	if (typeof value === "function") return JSON.stringify(value.toString());
	return defaultValue;
}};
var json = JSON.prune(obj, options);

Example 5: Array truncation mark

The default behavior on big arrays is to silently write only the first elements. It's possible with a replacer to add a string as last element:

var obj = {arr: Array.apply(0,Array(100)).map(function(_,i){ return i+1 })}
function replacer(value, defaultValue){
	if (Array.isArray(value)) return defaultValue.replace(/]$/, ',"-truncated-"]');
	return defaultValue;
}
var json = (asPrunedJSON(obj, {arrayMaxLength:5, replacer});

This produces

{"arr":[1,2,3,4,5,"-truncated-"]}

License

MIT

json.prune's People

Contributors

canop avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.