“NodeJS CSV ke JSON dari tautan” Kode Jawaban

NodeJS CSV ke JSON dari tautan

// npm install --save csvtojson@latest
const csv = require("csvtojson");
const request = require('request');
// Convert a csv file with csvtojson
csv().fromStream(request.get('https://fileas.csv))
  	.then(function(jsonArrayObj){
  		//when parse finished, result will be emitted here.
    	console.log(jsonArrayObj); 
 	})
GutoTrosla

JSON ke NodeJS CSV

const { Parser } = require('json2csv');

const myCars = [
  {
    "car": "Audi",
    "price": 40000,
    "color": "blue"
  }, {
    "car": "BMW",
    "price": 35000,
    "color": "black"
  }, {
    "car": "Porsche",
    "price": 60000,
    "color": "green"
  }
];

const json2csvParser = new Parser();
const csv = json2csvParser.parse(myCars);

console.log(csv);
Better Bat

Jawaban yang mirip dengan “NodeJS CSV ke JSON dari tautan”

Pertanyaan yang mirip dengan “NodeJS CSV ke JSON dari tautan”

Lebih banyak jawaban terkait untuk “NodeJS CSV ke JSON dari tautan” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya