Giter Site home page Giter Site logo

f593 / fs-read-data Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tufan-io/fs-read-data

0.0 0.0 0.0 181 KB

`fs-read-data` is a simple mechanism to read files in this one of multiple formats {json, js, yaml, ini, toml}.

License: Apache License 2.0

JavaScript 51.92% TypeScript 48.08%

fs-read-data's Introduction

fs-read-data

npm license travis status Build status Coverage Status David David Commitizen friendly
NPM

fs-read-data is a simple mechanism to read files in this one of multiple formats {json, js, yaml, ini, toml}.

Provides a CLI and API interface to underlying capability, making conversion of data-formats a breeze, especially when coupled with fs-write-data

Why?

It's common to have data files in one of multiple well-known formats (json, yaml, ini, toml). Sometimes these are config files, sometimes they are just declartive definitions.

This is a tool to help work with such files without getting in your way.

Great for checking validity of hand-crafted data files.

Compared to a single spurious babel module installation, the additional weight of multiple file parsers was considered acceptable collateral-weight.

Installation

npm install fs-read-data
yarn install fs-read-data

Usage

CLI

  Usage: read-data [fname]

  reads [fname] in {json, yaml, ini, toml}, prints resulting json to stdout.


  Options:

    -V, --version  output the version number
    -h, --help     output usage information

API

Exposes a single function via the API

/**
 * Reads filename in one of the supported formats
 * and returns a promise that resolves to a JavaScript object.
 *
 * @async
 * @param fname file to read
 */
async readFile(fname);
const read = require('fs-read-data').readFile;

// one of these

// auto-detects available extension, throws on multiple extensions
const data = await read(`/path/to/file/data`);
// read specific extension
const data = await read(`/path/to/file/data.json`);
const data = await read(`/path/to/file/data.yaml`);
const data = await read(`/path/to/file/data.yml`);
const data = await read(`/path/to/file/data.js`); // must return a single object
const data = await read(`/path/to/file/data.ini`);
const data = await read(`/path/to/file/data.toml`);

Development Tooling

Related

fs-write-data

Dependencies

This is an aggregation module, much like fs-extra. It's built upon the shoulders of libraries that provide it's core functionality.

js-yaml ini toml

Support cast: awaiting commander

License

Apache-2.0

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Support

Bugs, PRs, comments, suggestions welcomed!

fs-read-data's People

Contributors

sramam avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.