GitXplorerGitXplorer
m

node-mount

public
16 stars
15 forks
1 issues

Commits

List of commits on branch master.
Unverified
ffb63647ab2802606a34ba86e073208843a8a818

[dist] Version 0.0.3

mmmalecki committed 13 years ago
Unverified
3166153a44d0827cacf2ef3115d6e910e357a344

[docs] Add usage section to README

mmmalecki committed 13 years ago
Unverified
955f362edbacd02d01e145c0a1c0b9e03a211706

[mount] Add `umount` function

mmmalecki committed 13 years ago
Unverified
335079701d410fb804cd4dab60920b996e08fcb6

[minor] Formatting fix

mmmalecki committed 13 years ago
Unverified
6131defb26ae9ff580a9b1d0bd4bdf043a9eddf9

[dist] Version 0.0.2

mmmalecki committed 13 years ago
Unverified
030bb30b4cc5470ae873421d406daa015f45b75d

[dist] Make JS library the main entry point

mmmalecki committed 13 years ago

README

The README file for this repository.

node-mount

Copyright (C) 2011 by Maciej Małecki
MIT License (see LICENSE file)

Mount your device from node.js like what.

Usage

var mount = require('mount');
mount.mount('tmpfs', 'tmpDir', 'tmpfs');
// ... do some stuff in tmpDir
mount.unmount('tmpDir');
// BAH! everything from tmpDir is gone!

Installation

npm install mount