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

backmeup

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backmeup

Common functions for local or over ssh backup. Not a full nodejs implementation. Use shell exec

0.0.2
latest
npm
Version published
Weekly downloads
696
-25.96%
Maintainers
1
Weekly downloads
 
Created
Source

node-backmeup

Usage

var backmeup = require('backmeup');

backmeup.backup({
  source: '/etc' | ['/etc/' , '/home/file1']
  destination: '/tmp'
  archive: false (true by default)
  filename: 'toto.tgz' (filename of archive if true, timestamp by default)
  compress: true (false by default, ignored if archive is false)
  algorithm: 'gzip | bzip2 | lzma' (gzip by default)
  cleanup: true (false by default, will delete source)
}, function(err, info){
  info.filename.should.eql('etc-*.tgz');
});

Keywords

backup

FAQs

Package last updated on 18 Jul 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