0.1.0 • Published 7 years ago

gcp-container-builder v0.1.0

Weekly downloads
34
License
Apache-2.0
Repository
github
Last release
7 years ago

Node.js Client for Google Container Builder

Node.js client for Google Container Builder.

This is just a temporary node client for Container Builder while the official Google client doesn't have support for it.

The semantics are the same as with other GCP clients:

var config = { keyFilename: '/path/to/keyfile.json' };
var builder = require('gcp-container-builder')(config);

builder.getBuilds((err, builds) => { /* process builds */ });

Currently only getBuilds and createBuild methods are implemented.