GithubHelp home page GithubHelp logo

paulrosset / j2c Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 201 KB

๐Ÿ›  CLI that transform a JSON to CSV with Key,Value format.

JavaScript 86.23% HTML 11.53% CSS 2.25%
cli jsontocsv csv json j2c

j2c's Introduction

jsonTocsv (j2c)

Travis CI Build Status

CLI that transform a JSON to CSV with Key,Value format. Usefull to list all keys from a json object.

A web app also available --> Web App jsonToCsv

Installation

Install CLI :

npm install json2csv-cli -g

Install Api

npm install --save json2csv-cli

Usage CLI

j2c --json [file.json] --csv [file.csv]
Options:

    -V, --version       output the version number
    --json [file.json]  Your entry file, must be a json file.
    --csv [file.csv]    The csv file that will be saved. (If not existing , will create it)
    -f, --first         Specify the name of the object at the first position (default = obj)
    -h, --help          output usage information

Usage Api

The Api is available for Browser and nodejs.

import J2C from "json2csv-cli";

or

const J2C = require("json2csv-cli");
const parsedJson = JSON.parse(jsonUnParsed); // transform the JSON in JS object
const jsonTocsv = new J2C(); // Instanciate
jsonTocsv.convert(parsedJson); // Use convert() method to transform the JS object in csv format.
const csv = jsonTocsv.onceFilled(); // Once the array is filled , use this method to apply correct format.

Output

file.csv :

Key,Values
obj.test.path,value1
obj.other.path.test,value2
obj.again.path,value3

License

MIT

j2c's People

Contributors

paulrosset avatar

Stargazers

 avatar

Watchers

 avatar  avatar  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.