0.1.1 • Published 12 years ago

fs-in-memory v0.1.1

Weekly downloads
9
License
-
Repository
-
Last release
12 years ago

node-fs-in-memory

This module provides an in-memory implementation of the fs module. Functions and behaviour are added as required, so this is far from being a complete implementation. Patches and pull requests to add functions and make behaviour more realistic are very welcome!

Example

var fsInMemory = require("fs-in-memory)";
var fs = fsInMemory.create();
fs.writeFile("/name", "Bob", function(err) {
    fs.readFile("/name", "utf8", function(err, contents) {
        // contents === "Bob"
    });
});

Implemented functions

fs.readFile

fs.readdir

fs.exists

fs.mkdir

fs.writeFile

0.1.1

12 years ago

0.1.2

12 years ago

0.1.0

12 years ago