0.0.4 • Published 11 years ago

mnt v0.0.4

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

node-mount

Mount/unmount devices from node.js

Usage

var mount = require('mount');
mount.mount('tmpfs', 'tmpDir', 'tmpfs', function(success) {
	// Do hard job.
	mount.unmount('tmpDir', function(success) {
		// Finish hard job! YAY.
	});
});

Installation

npm install http://github.com/stackdot/node-mount.git

This module is forked from Maciej Małecki`s repository, but completely rewritten.