JSPM

write-data

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 917
  • Score
    100M100P100Q93569F
  • License MIT

Write a YAML or JSON file to disk. Automatically detects the format to write based on extension. Or pass `ext` on the options.

Package Exports

  • write-data

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (write-data) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

write-data NPM version Build Status

Write a YAML or JSON file to disk. Automatically detects the format to write based on extension. Or pass ext on the options.

Install

Install with npm

$ npm i write-data --save

Usage

var writeData = require('write-data');

// this is the example data we want to write to disk.
var data = {language: 'node_js', node_js: ['0.10', '0.12']};

async

writeData('.travis.yml', data, function(err) {
  if (err) console.log(err);
});

sync

writeData.sync('.travis.yml', data);

result

Both result in a .travis.yml file with the following contents:

language: node_js
node_js:
  - "0.10"
  - "0.12"

JSON

// async
writeData('foo.json', {abc: 'xyz'}, function(err) {
  if (err) console.log(err);
});

// sync
writeData.sync('foo.json', , {abc: 'xyz'});

Similar projects

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on November 17, 2015.