dotfile

easy way to read and write json dotfiles agnostic of the os

Usage no npm install needed!

<script type="module">
  import dotfile from 'https://cdn.skypack.dev/dotfile';
</script>

README

dotfile

simple way to save and read dotfiles

var dotfile = require('dotfile')('foo');

dotfile.exists(function (yesno) {
  dotfile.write({a: 1}, function (err) {
    dotfiles.read(function (err, disk) {
      console.log(disk);
    });
  });
});
// outputs {a: 1}