🚀 DAY 4 OF LAUNCH WEEK: Introducing GitHub Actions Scanning Support.Learn more →
Socket
Book a DemoInstallSign in
Socket

heirloom

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

heirloom

Backup your family photos (or any file) efficiently to Amazon S3

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

heirloom nodejs module

Useful for efficiently backing up your family photo collection (or any files).

Backup a file to S3, but only if it has changed or has not been uploaded before.

Status of build

Build Status

Getting Started

    # install as a command-line tool
    npm install -g heirloom
    
    # setup these two AWS authentication keys in your environment:

    AWS_SECRET_ACCESS_KEY
    AWS_ACCESS_KEY_ID

Usage

Copy one file to 'mybucketname' on S3. On S3 the file is saved using the full path in its name

    $ heirloom --bucket myS3bucketname --input /Users/brian/Pictures/CA_1920x1080_05.jpg

Copy one file to 'mybucketname' on S3 but strip off 2 levels of the path.

    # save to S3 as /Pictures/CA_1920x1080_05.jpg
    $ heirloom --bucket myS3bucketname --input /Users/brian/Pictures/CA_1920x1080_05.jpg --strip 2

Copy one file to 'mybucketname' on S3 but strip off 2 levels of the path, plus prepend a new root path

    # save to S3 as /SomewhereElse/Pictures/CA_1920x1080_05.jpg
    $ heirloom --bucket myS3bucketname --input /Users/brian/Pictures/CA_1920x1080_05.jpg --strip 2 --prepend '/SomewhereElse'

Want to copy all your .jpg images in your Pictures folder?

Just use unix "find" command and pipe to heirloom

Find *.jpg (case insensitive)

    $ find /Users/brian/Pictures -iname "*.jpg" -exec heirloom --bucket myS3bucketname --input \{\} \;

Find by multiple extensions (case insensitive)

    $ find /Users/brian/Pictures -iname "*.jpg" -o -iname "*.mov" -o -iname "*.jpeg" -o -iname "*.gif" -o -iname "*.png" -exec heirloom --bucket myS3bucketname --input \{\} \;

Find all files in the folder

    $ find /Users/brian/Pictures -exec heirloom --bucket myS3bucketname --input \{\} \;
    

Note that you should use an absolute path for "find" so that it includes an absolute path in the results.

The filename and path are used for the full name on S3.

Keywords

aws

FAQs

Package last updated on 07 Jul 2013

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