lucified/atomic-s3

Name: atomic-s3

Owner: Lucify

Description: Deploy projects "atomically" to S3

Created: 2016-05-24 14:28:14.0

Updated: 2017-12-09 20:26:13.0

Pushed: 2017-07-31 13:15:28.0

Homepage: null

Size: 26

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Deploy projects 'atomically' to S3

A simple utility for deploying projects pseudo-atomically to Amazon S3. It is designed to first upload assets that have content hashes, and only then upload entry points assets like index.html.

Assets that are not entry points are also assigned a max-age header. If not entry points, files of type css, json, js and svg are compressed with gzip. For all gzipped assets, the necessary S3 object metadata is added to allow them to be served properly.

Install
install atomic-s3 -g
Usage

The usage examples assume that necessary AWS credentials are provided.

Passing options via command line
ic-s3 --path=dist --bucket=my-bucket-name --region=eu-west-1
Passing options via configuration object

Create a file called atomic-s3.config.js.

le.exports = {
th: 'dist',
options: {
params: {
  'Bucket': 'my-bucket-name'
}
region: 'eu-west-1'


Then simply run

ic-s3
Usage via Javascript
rt atomicS3 from 'atomic-s3';

opts = {
th: 'dist'
options: {
params: {
  'Bucket': 'my-bucket-name'
}
region: 'eu-west-1'



icS3.publish(opts, (err, res) => {
 (err) {
console.log(`Publish failed: ${err}`);
return;

nsole.log('Project published.');

Options
Common options
Options only for command line API
Options only for config object
Test

Make sure you have the correct node version

use

Then run tests with

test
Testing against real infrastructure

Make sure that necessary AWS credentials are in place for the bucket configured in test/atomic-s3.config.js and run the following in the project root:

 src/main-cli.js --config=test/atomic-s3.config.js --verbose

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.