Socket
Socket
Sign inDemoInstall

ngx-csvto-json

Package Overview
Dependencies
5
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ngx-csvto-json

Angular Library to convert CSV to JSON array.


Version published
Weekly downloads
176
increased by40.8%
Maintainers
1
Install size
185 kB
Created
Weekly downloads
 

Readme

Source

CSVtoJSONLibrary

This project was generated with Angular CLI version 10.0.5.

CSV Format => JSON Format

Stackblitz Demo

Step - 1

npm i ngx-csvto-json --save
NPM Package Link

import NgxCSVtoJSONModule in app.module.ts file.
app.module.ts

import {NgxCSVtoJSONModule} from 'ngx-csvto-json';
 imports: [
    NgxCSVtoJSONModule
  ]

Step - 2

Use selector "Ngx-CSVtoJSON" to use the converter component
Note: This component can emit two events "onConvert" and "onFail"
Bind those event in app.component.ts file with user defined functions and process the result
app.component.ts

convert(objArray){
  console.log(objArray);
 }
 onError(err){
   console.log(err);
 }

app.component.html

<Ngx-CSVtoJSON (onConvert)="convert($event)" (onFail)="onError($event)"></Ngx-CSVtoJSON>

CONVERTED RESULT FORMAT

Result format will be in

finalobj= {
 properties: [],
 result: []
};

That's it you are good to go. Happy Coding :)

Keywords

FAQs

Last updated on 06 Aug 2020

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