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

jsonfile-updater

v3.1.0

Published

Node module for programatically updating package.json and other JSON files

Downloads

10,772

Readme

jsonfile-updater

Node module for programmatically updating package.json and other .json files.

NOTE: This package does not create JSON files, it can only edit existing valid JSON files. A file with just {} is all you need to get started.

jsonfile-updater enforces strict typing. Meaning, once a property of a certain type is added in the JSON file, it can be overwritten or set a new value with the same type only.

Supported types are: boolean, string, number, array, and object. Functions are not supported.

Usage

Instantiation

var updater = require('jsonfile-updater')

Further examples will be referring to the updater object created in the code above.

If you want to try out the examples, include the following code in your file.

var fs = require('fs')
function getParsedPackage() {
  return JSON.parse(fs.readFileSync('./settings.json'))
}

The jsonfile-updater methods support both callback and promise. If you omit the callback parameter, they return a promise, which can greatly simplify the code when used with async-await.

Adding properties

add(property, value[, callback])

Using the add() instance method, you can add new properties. If you try to add a property that aleady exists, the module will return an error. If you want to overwrite an existing property use set() or append().

Adding a string-type property:

Callback

updater('./settings.json').add('time', 'now', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.time === 'now') // true
})

Promise

updater('./settings.json').add('time', 'now')
.then(() => {
  var pkg = getParsedPackage()
  console.log(pkg.time === 'now') // true
}, reason => console.log(reason))

Adding an array-type property:

updater('./settings.json').add('tags', ['nodejs', 'javascript'], function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.tags)
})

Adding an object-type property:

updater('./settings.json').add('dependencies', { a: '1.2.1', b: '2.0.0'}, function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.dependencies)
})

You can add a sub-property using the dot notation:

updater('./settings.json').add('author.age', 100, function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.author.age) // 100
})

Updating properties

There are two methods for updating existing properties: set() for overwriting an existing value, append() for adding additional data to an existing value.

set(property, value[, callback])

Using the set() method, you can overwrite existing properties. If you try to update a property does not exist, the module will return an error. The new value should be the same as the old value's data type.

Callback

updater('./settings.json').set('license', 'FREE', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.license)
})

Promise

updater('./settings.json').set('license', 'FREE')
.then(() => {
  var pkg = getParsedPackage()
  console.log(pkg.license)
}, reason => console.log(reason))
updater('./settings.json').set('tags', 'cool', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.tags.includes('cool')) // true
})
updater('./settings.json').update('author', { 'username': 'hacksparrow' }, function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.author)
})

You can target a sub-property using the dot notation:

updater('./settings.json').update('author.age', 200, function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.author.age) // 200
})

append(property, value[, preserve][, callback])

Using the append() method, you can append items to an existing value. If you try to update a property does not exist, the module will return an error. append() does not work for all data types and work differently on different data types.

  1. Booleans cannot be appended to anything
  2. A string can be appended only to string or array (pushed)
  3. A number can be appended only to an array (pushed)
  4. An array can be appended only to another array (concatenated by default)
  5. An object can be appended only to an array (pushed) or another object (merged)

When an array is append to an array, the "appendee" will be concatened to the "appender". To preserve the array of the "appendee", and push it to the "appender", specify the preserve option when calling append.

Appending a string to an array:

Callback

updater('./settings.json').append('tags', 'cool', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.tags)
})

Promise

updater('./settings.json').append('tags', 'cool')
.then(() => {
  var pkg = getParsedPackage()
  console.log(pkg.tags)
}, reason => console.log(reason))

Appending a preserved array to an array:

updater('./settings.json').append('tags', ['cool', 'new'], true, function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.tags)
})

For more examples, refer /test/test.js.

Deleting properties

delete(property|[properties ...][, callback])

Using the delete() method, you can delete existing properties. If you try to delete a property that does not exist, the module will return an error.

FYI: delete() is also aliased as remove().

Deleting a single property:

Callback

updater('./settings.json').delete('name', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg)
})

Promise

updater('./settings.json').delete('name')
.then(() => {
  var pkg = getParsedPackage()
  console.log(pkg)
}, reason => console.log(reason))

Deleting multiple properties:

updater('./settings.json').delete(['name', 'version'], function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg)
})

You can target a sub-property using the dot notation:

updater('./settings.json').delete('author.age', function(err) {
  if (err) return console.log(err)
  var pkg = getParsedPackage()
  console.log(pkg.author.age) // undefined
})

LICENSE

MIT