fs.*FileSync
Functions
Backported
Standalone version of fs.readFileSync
, fs.writeFileSync
, and
fs.appendFileSync
from
nodejs/node@08039628, which
accept file descriptor arguments for synchronously reading and writing to open
file descriptors.
This module uses the fs
module sources and tests from
nodejs/node@08039628 with
only the changes necessary to support older versions of Node.js (e.g.
replacing octal literals with decimal to support v0.12 and earlier).
When running on a version of Node.js which includes 08039628
, the fs
functions will be returned in preference to the versions in this module.
Introductory Example
var fs = ;var readFileSync = readFileSync; var fd = fs;var packageJson = JSON;console;
Installation
This package can be installed using npm, either globally or locally, by running:
npm install fs-file-sync-fd
Recipes
Read everything from stdin
var readFileSync = readFileSync;var stdinContent = ;
Append to stdout
var appendFileSync = appendFileSync;;;
API Docs
The functions in this module are documented as part of the Node.js API:
License
This package is available under the terms of the MIT License.