1.0.4 • Published 3 years ago

iojson v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

iojson

Import and export json file with pure javascript in browser.

Install

npm install iojson

Demo

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
})