gcloud-sync

1.0.5 • Public • Published

Google Cloud Storage synchronisation utility

Installation

$ npm install --save gcloud-sync

Usage

const gsync = require('gcloud-sync');

// customizing options up-front
const gsync = require('gcloud-sync')({ parallelLimit: 2 });

// making an instance available to other files
const gsync = require('gcloud-sync');
gsync.custom = gsync({ parallelLimit: 2 });
// freeing memory: delete gsync.custom

// if Promise isn't defined
global.Promise = require('promise-module');
var gsync = require('gcloud-sync');

Synchronizing store data

gsync.execute({

  // MANDATORY FIELDS and example values

  projectId: 'uniqueProjectId',
  keyFilename: __dirname + '/key.json',
  bucket: 'pubsite_prod_rev_<developer-id>',
  prefix: 'stats/installs/installs_',
  outputDirectory: __dirname + '/sync-bucket',

  // OPTIONAL FIELDS and example values

  nameSelector: function(name) {
    return name.indexOf('2016') > -1;
  },

}).then(() => console.log('Done.'))
.catch(console.error);

Readme

Keywords

none

Package Sidebar

Install

npm i gcloud-sync

Weekly Downloads

1

Version

1.0.5

License

ISC

Last publish

Collaborators

  • rosedo