You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
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
73

Supply Chain Security

100

Vulnerability

71

Quality

75

Maintenance

100

License

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Version published
Weekly downloads
518
-25.47%
Maintainers
1
Weekly downloads
 
Created

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

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