fast-up

1.1.0 • Public • Published

fast-up

Uploads compiled assets to Amazon S3

NPM version NPM downloads Dependency Status Greenkeeper badge


Install

$ npm install fast-up -g

Usage

$ up -h
 
Usage: up [options]
 
Options:
  -v, --version                output the version number
  -c, --config [config]        config file path (default: "up-config.js")
  -d, --dist [dist]            upload files glob patten (default: "./dist/**")
  -b, --bucket [bucket]        S3 bucket name
  -r, --region [region]        S3 region name
  -a, --accessKey [accessKey]  S3 client accessKey
  -s, --secretKey [secretKey]  S3 client secretKey
  --port [port]                S3 endpoint port
  --host [host]                S3 endpoint host
  --base [base]                base path for dist
  --prefix [prefix]            object path prefix
  -h, --help                   output usage information
 
$ up --region=qn:cn-east-1 --bucket=test --accessKey=$AK --secretKey=$SK

Config

Default config file is up-config.json or up-config.js

// up-config.js
module.exports = {
  region: 'qn:cn-east-1',
  bucket: 'bucketName',
  accessKey: process.env.ACCESS_KEY,
  secretKey: process.env.SECRET_KEY,
  before: [{
    task: 'copy',
    actions: [{
      src: 'lib/**',
      dest: 'dist',
      base: '.'
    }]
  }],
  after: [{
    task: 'delete',
    actions: [{
      src: 'dist/**'
    }]
  }]
};

Report a issue

License

fast-up is available under the terms of the MIT License.

Package Sidebar

Install

npm i fast-up

Weekly Downloads

1

Version

1.1.0

License

MIT

Unpacked Size

9.4 kB

Total Files

6

Last publish

Collaborators

  • d-band