npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

obj-to-json

v1.0.0

Published

Methods to copy objects and convert JSON to obj and vice-versa in Node.js without throwing.

Downloads

29

Readme

obj-to-json

Methods to copy objects and convert JSON to obj and vice-versa in Node.js without throwing.

Why?

I don't like exceptions. This module wraps the JSON.stringify and JSON.parse, with a try/catch that makes exceptions become a return value of false on errors. This module is nice if you don't want to deal with exceptions and awful if you do.

The copyObj function does JSON.parse(JSON.stringify()) and won't work with objects properties lacking JSON representations or objects having circular references.

Installation

npm install obj-to-json

Example

'use strict';
var objToJson = require('obj-to-json');
var assert = require('assert');

// create a copy of the object
assert.deepEqual({a:11, b:true, c:'hi'}, objToJson.copyObj({a:11, b:true, c:'hi'}));

// will return false and ot throw
assert.equal(false, objToJson.copyObj(undefined));

// a straight-forward parse of the object
assert.deepEqual({a:1}, objToJson.jsonParse('{"a":1}'));

// will return false and not throw
assert.equal(false, objToJson.jsonParse('{a:a}'));

// a reviver which modifies each key to have 2x the value.
var reviver = function(k, v) {
  if (k === '') return v;
  return v*2;
};
// convert to an object with a reviver.
assert.deepEqual({a:2}, objToJson.jsonParse('{"a":1}', reviver));

// a replacer that modifies every 'a' property
var replacer = function(k, v) {
  if (k === 'a')  return v*3;
  return v;
};

// stringify the object using a space and a replacer
assert.deepEqual('{\n "a": 33,\n "b": true,\n "c": "hi"\n}',
        objToJson.jsonStringify({a:11, b:true, c:'hi'}, replacer, ' '));

// will return false and not throw
var obj2 = { a: 11, b: true, c: 'hi' };
obj2.d = { a: obj2 };
assert.equal(false, objToJson.jsonStringify(obj2));

console.log('success.');

API

copyObj(val [, delProps])

A convenience function to copy an object. Must be an object that can be serialized into JSON.

Params:

  • Any val Any type with a valid JSON representation.
  • Array|Str [delProps] A string or an array of properties to delete. Optional.

Return:

  • Object|Boolean returns the object copy or false, if there was an error.

jsonParse(str, [reviver])

A convenience function to convert a JSON string to an object.

Params:

  • String str A stringified JSON representation.
  • Function [reviver] Optional function to transform the JSON should have the form: function(key, value)

Return:

  • Object|Boolean returns the object representation of the JSON, if the string representation is legal and false otherwise.

jsonStringify(val, [replacer], [space])

A convenience function to convert an object to a JSON string.

Params:

  • Any val A javascript value with a legal JSON representation.
  • Function [replacer] Optional function to replace values.
  • String [space] An optional separator used for spacing.

Return:

  • String|Boolean The JSON string if possible and false otherwise.

License

The MIT License (MIT)

Copyright (c) 201,2014 Edmond Meinfelder

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.