All Projects → maxogden → Folder Backup

maxogden / Folder Backup

Licence: bsd-2-clause
node module for easily packing and extracting folders as tarballs, for web servers or local filesystem usage

Programming Languages

javascript
184084 projects - #8 most used programming language

folder-backup

NPM

Easily pack and extract folders as tarballs, for web servers or local filesystem usage.

var fbackup = require('folder-backup')

##API

fbackup.clone(remoteURL, options, cb)

makes HTTP request to remoteURL (which should be fbackup.serve and/or the .tar.gz of a fbackup.pack) and unpacks into options.path. default path is process.cwd()

you can also specify options.showProgress as either true or false (default is false) if you want to print progress messages to stdout

fbackup.unpack

the extract method exposed from the internal instance of the tar-fs module

fbackup.serve(dir, httpResponse, [cb])

function for mounting this module in an http API. streams fbackup.pack of dir to the httpResponse, calls optional cb when done

fbackup.pack

the pack method exposed from the internal instance of the tar-fs module

license

BSD

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].