Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
folder-to-object
Advanced tools
Convert a folder of data files into an object
npm install folder-to-object
Given this folder structure:
- data/
- one.json
- two/
- three.yml
- four.js
You can convert the entire folder and the contents of its files into one big object.
const { join } = require('path');
const toObject = require('folder-to-object');
toObject(join(process.cwd(), 'data')).then(res => console.log(res));
/*
{
"one": { ... },
"two": {
"three": { ... },
"four": { ... },
},
}
*/
Supported formats include JSON, YAML, CSON, or a JavaScript file with a module.exports
.
Note: if you have a folder and file with the same name at the same level, the two will be in conflict. Try to avoid this.
Convert the data files in a folder into an object matching the directory structure of the folder.
Returns a Promise containing the final object.
git clone https://github.com/gakimball/folder-to-object
cd folder-to-object
npm install
npm test
MIT © Geoff Kimball
FAQs
Convert a folder of data files into an object
We found that folder-to-object 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.