New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

btrfs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

btrfs

A btrfs library for nodejs applications

0.1.9
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

btrfs

##About

###Build Status Build Status

###Description A btrfs library for nodejs applications

###Author ContainerShip Developers - developers@containership.io

##Getting Started

###Installation npm install btrfs

###Usage ####create_subvolume

var btrfs = require("btrfs");
btrfs.create_subvolume("/mnt/btrfs/subvolume", function(err){
    if(err)
        throw err;
});

####delete_subvolume

var btrfs = require("btrfs");
btrfs.delete_subvolume("/mnt/btrfs/subvolume", function(err){
    if(err)
        throw err;
});

####create_snapshot

var btrfs = require("btrfs");
btrfs.create_snapshot("/mnt/btrfs/subvolume", "/mnt/btrfs/snapshot", { readonly: true }, function(err){
    if(err)
        throw err;
});

##Contributing Pull requests and issues are encouraged!

Keywords

btrfs

FAQs

Package last updated on 20 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts