New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

csv-to-deep-json

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-to-deep-json

CSV to deep json libarary

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

csv-to-deep-json

Transforms csv-string to 'deep' js object structure.

Documentation

// if you have an array of comma-separated-strings you can just pass that array
export function buildObjectsFromCsv(csvStringArray: string[]): any[]

// if you have all data in single string (f.e. if you read it from a file)
// you can pass that single string and specify delimiter, and lib split that string for you
export function buildObjectsFromCsvString(csv: string, delimiter: string): any[];

Example

  • Given excel table:
namedob.year NUMBERdob.month NUMBERdob.days NUMBERfriends [,]isAlive BOOLEANmoneyHave STRING
Ivan199313Kolya,MarinaTRUE200 USD
Piter1857526FALSE0 USD
Kolya2004117Ivan,MarinaTRUE1000 UAH
  • transformed to csv via xlsx library:
name,dob.year NUMBER,dob.month NUMBER,dob.days NUMBER,"friends [,]",isAlive BOOLEAN,moneyHave STRING\nIvan,1993,1,3,"Kolya,Marina",TRUE,200 USD\nPiter,1857,5,26,,FALSE,0 USD\nKolya,2004,11,7,"Ivan,Marina",TRUE,1000 UAH
  • or if split by \n:
name,dob.year NUMBER,dob.month NUMBER,dob.days NUMBER,"friends [,]",isAlive BOOLEAN,moneyHave STRING
Ivan,1993,1,3,"Kolya,Marina",TRUE,200 USD
Piter,1857,5,26,,FALSE,0 USD
Kolya,2004,11,7,"Ivan,Marina",TRUE,1000 UAH
  • use lib to convert that csv data to json:
const csvStrings: string[] = [...];
const csv_to_json = require("csv-to-deep-json");
const data: any[] = csv_to_json.buildObjectsFromCsv(csvStrings);
console.log(JSON.stringify(data));
  • output:
    [
      {
        "name": "Ivan",
        "dob": {
          "year": 1993,
          "month": 1,
          "days": 3
        },
        "friends": [
          "Kolya",
          "Marina"
        ],
        "isAlive": true,
        "moneyHave": "200 USD"
       },
       {
        "name": "Piter",
        "dob": {
          "year": 1857,
          "month": 5,
          "days": 26
        },
        "friends": null,
        "isAlive": false,
        "moneyHave": "0 USD"
      },
      {
        "name": "Kolya",
        "dob": {
          "year": 2004,
          "month": 11,
          "days": 7
        },
        "friends": [
          "Ivan",
          "Marina"
        ],
        "isAlive": true,
        "moneyHave": "1000 UAH"
      }
    ]
    

Keywords

FAQs

Package last updated on 15 Jun 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc