write
Last updated
Was this helpful?
Last updated
Was this helpful?
Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.
Install with :
Asynchronously writes data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Data can be a string or a buffer. Returns a promise if a callback function is not passed.
Params
filepath
{string|Buffer|integer}: filepath or file descriptor.
data
{string|Buffer|Uint8Array}: String to write to disk.
options
{object}: Options to pass to and/or
callback
{Function}: (optional) If no callback is provided, a promise is returned.
Example
Params
filepath
{string|Buffer|integer}: filepath or file descriptor.
val
{string|Buffer|Uint8Array}: String or buffer to write to disk.
returns
{Promise}
Example
Params
filepath
{string|Buffer|integer}: filepath or file descriptor.
data
{string|Buffer|Uint8Array}: String or buffer to write to disk.
returns
{undefined}
Example
Params
filepath
{string|Buffer|integer}: filepath or file descriptor.
Example
improved documentation
Added
Changed
The main export will now return a promise if no callback is passed
Commits
Contributor
33
1
To generate the readme, run the following command:
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
Jon Schlinkert
The promise version of . Returns a promise.
options
{object}: Options to pass to and/or
The synchronous version of . Returns undefined.
options
{object}: Options to pass to and/or
Uses fs.createWriteStream
to write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Data can be a string or a buffer. Returns a new object.
options
{object}: Options to pass to and
returns
{Stream}: Returns a new object. (See ).
: Delete files and folders and any intermediate directories if they exist (sync and async). |
: Read JSON or YAML files. |
: Very thin wrapper around js-yaml for directly reading in YAML files. |
: Write a YAML or JSON file to disk. Automatically detects the format to write based… |
: Write a JSON file to disk, also creates intermediate directories in the destination path if… |
: Write YAML. Converts JSON to YAML writes it to the specified file. |
Pull requests and stars are always welcome. For bugs and feature requests, .
(This project's readme.md is generated by , please don't edit the readme directly. Any changes to the readme must be made in the readme template.)
Copyright © 2017, . Released under the .
This file was generated by , v0.6.0, on July 11, 2017.