Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpedro/node-fs
Extended node fs library, implementing new features like recursive directory creation
https://github.com/bpedro/node-fs
Last synced: 2 days ago
JSON representation
Extended node fs library, implementing new features like recursive directory creation
- Host: GitHub
- URL: https://github.com/bpedro/node-fs
- Owner: bpedro
- License: mit
- Created: 2010-12-15T18:17:28.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2015-11-09T12:49:05.000Z (about 9 years ago)
- Last Synced: 2025-01-15T13:02:31.609Z (9 days ago)
- Language: JavaScript
- Homepage:
- Size: 196 KB
- Stars: 68
- Watchers: 3
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
node-fs is an extension to the original [nodejs](http://nodejs.org) [fs library](http://nodejs.org/docs/v0.3.1/api/fs.html), 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.[![Build Status](https://secure.travis-ci.org/bpedro/node-fs.png?branch=master)](http://travis-ci.org/bpedro/node-fs)
[![Code Climate](https://codeclimate.com/github/bpedro/node-fs.png)](https://codeclimate.com/github/bpedro/node-fs)