
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
easy-jsonfs
Advanced tools
Handles JSON file directly through methods to get, set, remove, getAll and save.
Handles JSON file directly through methods to get, set, remove, getAll and save.
npm install easy-jsonfs --save
Assuming the package.json file has the following content:
{
"name": "easy-jsonfs",
"version": "0.1.0",
"description": "Handles JSON file directly through methods to get, set, remove, getAll and save.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cneryjr/easy-jsonfs.git"
},
.
.
.
}
var store = new Store('./package.json');
var ver = store.get('version'); // ver = "0.1.0"
var aux = store.get('repository.type'); // aux = "git"
store.set('repository.info', 'repo in github');
aux = store.get('repository.info'); // aux = "repo in github"
(MIT License)
FAQs
Handles JSON file directly through methods to get, set, remove, getAll and save.
We found that easy-jsonfs 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.