
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
atomic-json-store
Advanced tools
A configuration store adapted from configstore, with the following key differences:
config-root)configstore creates it upon instantiation)get, atomic-json-store does not create the parent directoryCreate a config at ~/.config/my-config.json:
const JSONStore = require('atomic-json-store')
const root = require('config-root')
const config = JSONStore(root + '/my-config.json')
config.set('name', 'milly')
config.get('name')
config.toJSON()
config.delete('name')
config.clear()
store = Store(path, [options])Options:
Instead of setting defaults, which are saved to the JSON file, use family-store:
const JSONStore = require('atomic-json-store')
const FamilyStore = require('family-store')
const defs = FamilyStore('defaults', JSONStore('defaults.json'))
const beep = FamilyStore('beep', JSONStore('beep.json'))
beep.inherit(defs)
defs.set('port', 3000)
beep.get('port') // 3000
With npm do:
npm install atomic-json-store
BSD-2-Clause © ironSource. Original work © Google.
FAQs
Get and set configuration in a JSON file
The npm package atomic-json-store receives a total of 2 weekly downloads. As such, atomic-json-store popularity was classified as not popular.
We found that atomic-json-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.