Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

create-file

joakimbeng10.3kMIT1.0.1

Write to a file only if it does not exist

file, writefile, create

readme

create-file

NPM version js-xo-style

Write to a file only if it does not exist

Installation

Install create-file using npm:

npm install --save create-file

Usage

Module usage

var createFile = require('create-file');

createFile('/path/to/file/to-create', 'my content\n', function (err) {
  // file either already exists or is now created (including non existing directories)
});

API

createFile(filename, contents, cb)

Name Type Description
filename String The filename to create
contents String The content to write
cb Function Callback

License

MIT