
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.