Socket
Socket
Sign inDemoInstall

folder-to-object

Package Overview
Dependencies
32
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    folder-to-object

Convert a folder of data files into an object


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

folder-to-object

Convert a folder of data files into an object

Travis npm

Installation

npm install folder-to-object

Usage

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.

API

toObject(path)

Convert the data files in a folder into an object matching the directory structure of the folder.

  • folder (String): Folder to parse.

Returns a Promise containing the final object.

Local Development

git clone https://github.com/gakimball/folder-to-object
cd folder-to-object
npm install
npm test

License

MIT © Geoff Kimball

Keywords

FAQs

Last updated on 20 Apr 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc