Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edit-json-file

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edit-json-file

Edit a json file with ease.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
95K
decreased by-15.02%
Maintainers
1
Weekly downloads
 
Created
Source

edit-json-file

Patreon PayPal AMA Version Downloads Get help on Codementor

Edit a json file with ease.

:cloud: Installation

$ npm i --save 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("name.first", "Johnny");
file.set("name.last", "B.");
file.set("is_student", false);

// Output the content
console.log(file.get());
// { planet: 'Earth',
//   name: { first: 'Johnny', last: 'B.' },
//   is_student: false }

// 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] } } }

: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.
  • autosave (Boolean): Save the file when setting some data in it.
Return
  • JsonEditor The JsonEditor instance.

set(path, value)

Set a value in a specific path.

Params
  • String path: The object path.
  • Anything value: The value.
Return
  • JsonEditor The JsonEditor instance.

get(path)

Get a value in a specific path.

Params
  • String path:
Return
  • Value The object path value.

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.

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.

:moneybag: Donations

Another way to support the development of my open-source modules is to set up a recurring donation, via Patreon. :rocket:

PayPal donations are appreciated too! Each dollar helps.

Thanks! :heart:

:scroll: License

MIT © Ionică Bizău

Keywords

FAQs

Package last updated on 08 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc