iojson
v1.0.4
Published
Import and export json file with pure javascript in browser.
Downloads
16
Maintainers
Readme
iojson
Import and export json file with pure javascript in browser.
Install
npm install iojsonDemo
import iojson from 'iojson'
const data = {
// your json data
}
// export a .json file
iojson.exportJSON(data, 'filename')
// import json from file
iojson.importJSON().then(data => {
// some code
})