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

ujson

v1.0.3

Published

Methods to work with json files and objects.

Downloads

48

Readme

ujson

npm npm

Methods to work with JSON objects and files.

Installation

Install ujson using NPM:

npm install ujson

API

ujson.parse(str)

Parses a JSON string and builds the JavaScript value or object described by the string.

ujson.toString(obj, [ space])

Converts a JavaScript object to a JSON string. Accepts the following arguments:

  • obj: JavaScript object to converts to a string.
  • space: string or number that's used to insert white space into the output JSON string for readability purposes.

ujson.read(path, [options, ] callback)

Reads the content of a JSON file. Accepts the following arguments:

  • path: full path to the json file.
  • options: (optionally) object or string with the following options:
    • encoding: default: utf8.
  • callback: function that will be executed with two arguments: error and data, where data is a parsed object with the file content in JSON format, and error is an Error object (see https://nodejs.org/api/errors.html#errors_class_error) if there is an error reading the JSON file.

If options is a string, then it specifies the encoding. Example:

ujson.read('file.json', 'utf8', function(error, data)
{
  //Check for error
  if(error){ throw error; }

  //Show json content
  console.log(data);
});

ujson.readSync(path, [options])

Synchronous version of ujson.read. Returns a parsed object with the content of the json file.

ujson.write(path, object, [options, ] callback)

Write the object to the json file specified. Accepts the following arguments:

  • path: string with the filename.
  • object: json object that will be saved as a json file.
  • options (optionally) object or string with the following options:
    • encoding: default: utf8.
    • space: string or number that's used to insert white space into the output JSON string for readability purposes.
  • callback: function.

Example:

ujson.write('file.json', { key: 'value' }, { encoding: 'utf8', space: '\t' }, function(error)
{
  //Check for error
  if(err){ throw error; }

  //Do something....
});

ujson.writeSync(path, object, [options])

Synchronous version of ujson.write.

ujson.extend(child, parent, keys)

Extend a child object with the keys of a parent object. Example:

//Parent object
var obj_parent = { key1: 'value1', key2: 'value2', key3: 'value3' };

//Child object
var obj_child = { key4: 'value4' };

//Extend
var obj_extended = ujson.extend(obj_child, obj_parent, [ 'key1', 'key2' ]);

//Show  extended object
console.log(obj_extended); //-> { key4: 'value4', key1: 'value1', key2: 'value2' }

License

MIT LICENSE.