- section: Install
- cli: >
    npm i files-generator
- section: Basic usage
- js: >
    const generate = require('files-generator')();


    generate({
      'path/to/file': 'file content',
      'path/to/file2': generate.use('other file content')
    });

    generate.on('finish', event => {
      console.log(event.success); // ["path/to/file", "path/to/file2"]
    })
- section: Documentation