Update README.md

formatting
This commit is contained in:
Alan K 2013-12-02 16:25:32 -05:00
parent 35e2db6116
commit 2d2e582af7
1 changed files with 4 additions and 0 deletions

View File

@ -5,9 +5,13 @@
Filer is a POSIX-like file system interface for browser-based JavaScript. Filer is a POSIX-like file system interface for browser-based JavaScript.
The API is as close to the node.js [fs module](http://nodejs.org/api/fs.html) as possible The API is as close to the node.js [fs module](http://nodejs.org/api/fs.html) as possible
with the following differences: with the following differences:
* No synchronous versions of methods (e.g., `mkdir()` but not `mkdirSync()`). * No synchronous versions of methods (e.g., `mkdir()` but not `mkdirSync()`).
* No permissions (e.g., no `chown()`, `chmod()`, etc.). * No permissions (e.g., no `chown()`, `chmod()`, etc.).
* No support (yet) for `fs.watchFile()`, `fs.unwatchFile()`, `fs.watch()`. * No support (yet) for `fs.watchFile()`, `fs.unwatchFile()`, `fs.watch()`.
* No support for stream-based operations (e.g., `fs.ReadStream`, `fs.WriteStream`). * No support for stream-based operations (e.g., `fs.ReadStream`, `fs.WriteStream`).
### Contributing ### Contributing