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

edit-json-file

v1.8.0

Published

Edit a json file with ease.

Downloads

362,949

Readme

edit-json-file

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Edit a json file with ease.

:cloud: Installation

# Using npm
npm install --save edit-json-file

# Using yarn
yarn add edit-json-file

:clipboard: Example

const editJsonFile = require("edit-json-file");

// If the file doesn't exist, the content will be an empty object by default.
let file = editJsonFile(`${__dirname}/foo.json`);

// Set a couple of fields
file.set("planet", "Earth");
file.set("city\\.name", "anytown");
file.set("name.first", "Johnny");
file.set("name.last", "B.");
file.set("is_student", false);
//Create or append to an array
file.append("classes", "fysics");
//You can even append objects
file.append("classes", { class: "Computer Science", where: "KULeuven" });


// Output the content
console.log(file.get());
// { planet: 'Earth',
//   city.name: 'anytown',
//   name: { first: 'Johnny', last: 'B.' },
//   is_student: false,
//   classes: [
//     'fysics',
//     {
//       'class': 'Computer Science',
//       'where': 'KULeuven'
//     }
//   ]
// }

//if you want to remove the last element from an array use pop
file.pop("classes")

// Save the data to the disk
file.save();

// Reload it from the disk
file = editJsonFile(`${__dirname}/foo.json`, {
    autosave: true
});

// Get one field
console.log(file.get("name.first"));
// => Johnny

// This will save it to disk
file.set("a.new.field.as.object", {
    hello: "world"
});

// Output the whole thing
console.log(file.toObject());
// { planet: 'Earth',
//   name: { first: 'Johnny', last: 'B.' },
//   is_student: false,
//   a: { new: { field: [Object] } } }

:question: Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. :bug:
  3. For direct and quick help, you can use Codementor. :rocket:

:memo: Documentation

JsonEditor(path, options)

Params

  • String path: The path to the JSON file.
  • Object options: An object containing the following fields:
  • stringify_width (Number): The JSON stringify indent width (default: 2).
  • stringify_fn (Function): A function used by JSON.stringify.
  • stringify_eol (Boolean): Wheter to add the new line at the end of the file or not (default: false)
  • ignore_dots (Boolean): Wheter to use the path including dots or have an object structure (default: false)
  • autosave (Boolean): Save the file when setting some data in it.

Return

  • JsonEditor The JsonEditor instance.

set(path, value, options)

Set a value in a specific path.

Params

  • String path: The object path.
  • Anything value: The value.
  • Object options: The options for set-value (applied only when {ignore_dots} file option is false)

Return

  • JsonEditor The JsonEditor instance.

get(path)

Get a value in a specific path.

Params

  • String path:

Return

  • Value The object path value.

unset(path)

Remove a path from a JSON object.

Params

  • String path: The object path.

Return

  • JsonEditor The JsonEditor instance.

append(path, value)

Appends a value/object to a specific path. If the path is empty it wil create a list.

Params

  • String path: The object path.
  • Anything value: The value.

Return

  • JsonEditor The JsonEditor instance.

pop(path)

Pop an array from a specific path.

Params

  • String path: The object path.

Return

  • JsonEditor The JsonEditor instance.

read(cb)

Read the JSON file.

Params

  • Function cb: An optional callback function which will turn the function into an asynchronous one.

Return

  • Object The object parsed as object or an empty object by default.

read(The, cb)

write Write the JSON file.

Params

  • String The: file content.
  • Function cb: An optional callback function which will turn the function into an asynchronous one.

Return

  • JsonEditor The JsonEditor instance.

empty(cb)

Empty the JSON file content.

Params

  • Function cb: The callback function.

toString()

Get the current data as string.

Return

  • string The data as string.

save(cb)

Save the file back to disk.

Params

  • Function cb: An optional callback function which will turn the function into an asynchronous one.

Return

  • JsonEditor The JsonEditor instance.

toObject()

Return

  • Object The data object.

editJsonFile(path, options)

Edit a json file.

Params

  • String path: The path to the JSON file.
  • Object options: An object containing the following fields:

Return

  • JsonEditor The JsonEditor instance.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:sparkling_heart: Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like :rocket:

  • Buy me a book—I love books! I will remember you after years if you buy me one. :grin: :book:

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea:

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! :heart:

:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

  • @genesislcap/build-kit
  • @acanto/laravel-scripts
  • @neutralinojs/neu
  • @dolittle/vanir-features
  • @nattyjs/cli
  • json-config-ts
  • @dolittle/vanir-cli
  • @airbnb/nimbus
  • soft-add-dependencies
  • @spazious/ts-config
  • @wonderland/cli-plugin-new
  • @spazious/eslint-config
  • @spazious/storybook-config
  • @formbird/core
  • check-dependency-version-consistency
  • @genesislcap/foundation-cli
  • menreiki-init
  • @olmokit/cli
  • @williarts/williarts-commons
  • admooh-cli
  • create-web-app-template
  • create-fw
  • create-nextjs-skeleton
  • create-itk-app
  • baelte-cli
  • deploi
  • @everything-registry/sub-chunk-1554
  • next-templates
  • lyo
  • live-stream-radio
  • mobcoder-node-express-typescript-generator
  • modern-project-generator
  • nipinit
  • monstro
  • jollofjs
  • noir-wp-cli
  • semcom
  • sheetbase-cli
  • typescript-react-native-starter
  • @kylehue/create-app
  • @frdl/legacy-and-deprecations-fallback
  • @sevta/cli
  • @johnlindquist/next-lesson
  • @wonderland/cli-plugin-serverless
  • copancs-microservice-teemplate
  • create-ts-jest
  • @bemedev/npm-publish
  • bhc-cli
  • blazar-cli
  • bucket-cli
  • @bitcoin-computer/node
  • bt-translate
  • @bronzw/create-discord-js-bot
  • @wonderland/new
  • @xploration-tech/xtouch
  • appium-reporter-plugin
  • aranha-commons
  • express-ts-app
  • doggoreportbot
  • infinicli
  • intelliter
  • fixed-minor-patch-package-json
  • fluxxo-generator
  • @dricup/dricup-cli
  • react-native-dom-expo
  • robinhood-yolo
  • simple-rtg
  • uspk-ui
  • typescript-fastify-starter
  • uiseeds
  • vcommit-cli
  • webify-generator
  • @malmo/cli
  • @mtmeyer/create-react-figma-plugin
  • @imklau/react-app
  • zoral-generator
  • @postlight/node-typescript-starter-kit
  • @teamhive/angular-npm-seed
  • @something.technology/core
  • chakra-12345
  • cmd-assistant
  • dukecbe
  • d-bot-script
  • create-any-app
  • create-express-ts-api
  • bloggify-tools
  • dricup-cli
  • @superjs/require-auto
  • @shoveller/copy-package
  • @orhanemree/create-template
  • @perlatsp/devild
  • @panfilo/express-template
  • typescript-vue-starter
  • typescript-express-starter
  • @mianfrigo/express-typescript-generator
  • @marvinkome/create-node-app
  • git-normalize
  • env-to-now-json
  • guser
  • my-chakra-ui
  • @dolittle/vanir-common
  • menreiki2
  • mf-webpack-plugin
  • @farazahmad759/dricup-crud-express
  • @j.u.p.iter/jupiter-scripts
  • crestron-angular-theme
  • @benits/teste-ui
  • cli-json-edit
  • boilerplate-templify-cli
  • ecochat-term
  • @grogqli/server
  • @genesislcap/genx2
  • typescript-nest-starter
  • typescript-koa-starter
  • torder-vue-cli
  • @allmywallets/specification
  • @jianghe/sand-cli
  • @kcom/package-tools
  • srf-deploy-qb
  • @elastosfoundation/trinity-cli
  • term-of-the-day
  • simple-webpack-starter
  • @spazious/config
  • @sapling/cli
  • @rajzik/lumos
  • @s-ui/changelog
  • neu-forge
  • malmo
  • modern-node-starter
  • node-rg
  • project-initializer
  • @dolittle/webpack
  • react-vscode-cli
  • react-sgh-scaffolding
  • returrn
  • @chakra-ui/codemod
  • forcemanager-cli
  • feeder-cli
  • easybackup
  • lerna-from-npm
  • @crestron/ch5-shell-utilities-cli
  • dricup
  • h4cksterbot
  • gyaon-cli
  • def-struct
  • iffe-cli
  • jad-node-ts-kit
  • @triptyk/nfw-cli
  • create-cubicus-frontend
  • base-express-app-starter
  • axereos-hopes
  • blip-lang
  • create-nuxt-typescript-component
  • copancs-microservice-template
  • build-swan-plugin
  • cucu-generator
  • create-cubicus-backend
  • create-express-template
  • create-express-typescript-application
  • @bemedev/publish-command
  • dex-cli
  • deyarn
  • deployqb
  • @colorfulcompany/create-cc-jlmf
  • fix-package-versions
  • express-generator-typescript-k8s
  • mongoose-auto-api.cli
  • next-nodecms
  • kanuki-cli
  • sisback
  • striplet
  • react-easy-boilerplate
  • ts-express-starter
  • typescript-react-starter
  • grafpad
  • iffe-commit
  • infinitumcli
  • @aburkov/scripts
  • mtm-cli
  • @acanto/workflow
  • @deboxsoft/plop-generator
  • new-express-app
  • jollof-cli
  • pandocuments
  • lazlodb
  • pkgmngrgui
  • @hyron/cli
  • @anyopsos/cli
  • @imklau/react-boilerplate
  • @geesmart/zxlib
  • @tinyhttp/cli
  • @fanxie/cli
  • @aquestsrl/create-app-cli
  • create-next-library
  • ss-clean-slate

:scroll: License

MIT © Ionică Bizău