Skip to content

👜 Node.js utility for creating BagIt archives. 👜

License

Notifications You must be signed in to change notification settings

little9/gladstone

Repository files navigation

👜 Gladstone 👜

Build Status

This is a node module for creating BagIt archives.

The goal of the project is to implement the complete BagIt 0.97 specification.

Installation

It can be downloaded and installed from npm:

npm install -g gladstone

Command line usage

To use it from the command-line you provide a source directory that you want want to create a BagIt archive for, a name for the bag, and a hashing algorithm.

gladstone --bagName ~/bagname --originDirectory ~/source --cryptoMethod md5 

The BagIt specification has some optional metadata fields that can be present in the bag-info.txt file. These optional fields can be passed on the command line:

gladstone --bagName ~/bagname --originDirectory ~/source --cryptoMethod md5 --sourceOrganization "Your Org"

Programmatic usage

You can also use gladstone in other node applications by passing the createBagDirectory function a JSON object:

var gladstone = require('gladstone');

gladstone.createBagDirectory({ bagName: '/path/to/new/bag',
                               originDirectory: '/path/to/dir/to/bag',
                               cryptoMethod: 'sha256',
                               sourceOrganization: 'Example Organization',
                               organizationAddress: '123 Street',
                               contactName: 'Contact Name',
                               contactPhone: '555-555-5555',
                               contactEmail: '[email protected]',
                               externalDescription: 'An example description'
                            });

About

👜 Node.js utility for creating BagIt archives. 👜

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published