SkillAgentSearch skills...

Jsop

JSON file reader/writer (powered by Object.observe)

Install / Use

/learn @typicode/Jsop
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

jsop

One-way data binding for JSON files

jsop is a JSON file reader/writer powered by Object.observe.

Before

var fs = require('fs')

var config = JSON.parse(fs.readFileSync('config.json'))
config.foo = 'bar'
fs.writeFile('config.json', JSON.stringify(config), function(err) {
  if (err) throw err
})

After

var jsop = require('jsop')

var config = jsop('config.json')
config.foo = 'bar'

Changes are automatically written to file. If file doesn't exist, it will be created.

License

MIT - Typicode

* jsop is short for jsonOpen

View on GitHub
GitHub Stars209
CategoryDevelopment
Updated1y ago
Forks12

Languages

JavaScript

Security Score

80/100

Audited on Mar 27, 2025

No findings