-
Notifications
You must be signed in to change notification settings - Fork 0
How to install
n4n5 edited this page Jun 19, 2021
·
3 revisions
First have NodeJS installed. If it's isn't the case, you can download it on the official website
Then install my node_module with
npm install csv-to-custom-json
Lengend :
npm
stands forNode Packet Manager
, it can be used to downloadnode_modules
csv-to-custom-json
is the name of thenode_modules
Then if you want to use it, you can for example copy and paste this code :
const converter = require("csv-to-custom-json")
const result = await converter("myfile.csv");
Lengend :
- the name
myfile.csv
can be different, just change it with the correct name of your file
Now you are ready to check Options !