Package Exports
- node-fs
- node-fs/lib/fs.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-fs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-fs is an extension to the original nodejs fs library, offering new functionalities. See example.js for an example of how to use it.
Right now, the following new operations are supported:
- mkdir(path, mode, [recursive], [callback]): if the 'recursive' parameter is true, creates a directory recursively;
- mkdirSync(path, mode, [recursive]): if the 'recursive' parameter is true, synchronously creates a directory recursively.
