Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
The npm package folder-to-object receives a total of 0 weekly downloads. As such, folder-to-object popularity was classified as not popular.
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.