
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
A super simple CLI and API for using Google Cloud Build.
$ npm install gcbuild
gcb
is a convenient way to submit jobs to Google Cloud Build. To use as a command line application:
$ npm install --save-dev gcbuild
Then from your package.json
, it's super easy to add a deploy script:
"scripts": {
"deploy": "gcb"
}
Location of the sources to be deployed. If not specified, assumes the current working directory.
The YAML or JSON file to use as the build configuration file. Defaults to 'cloudbuild.yaml' if not specified.
The tag to use with a "docker build" image creation.
# Create an image for the current working directory.
$ gcb
# If there's a Dockerfile in the CWD, I can also specify a tag
$ gcb --tag my-image-name
# Use a build file not named `cloudbuild.yaml`
$ gcb --config suchbuild.json
# Perform a build from another location on disk
$ gcb ~/Code/verydocker
You can also use this as a regular old API.
const {build} = require('gcb');
async function main() {
await build({
source: '/path/to/source',
....
});
}
main().catch(console.error);
This library uses google-auth-library under the hood to provide authentication. That means you can authenticate a few ways.
One of the reasons this library exists is to provide a nodejs native deployment in environments where you don't want to have the Cloud SDK installed.
For this method, you'll need to create a service account, and download a key.
$ export GOOGLE_APPLICATION_CREDENTIALS="./keys.json"
$ gcb .
If you plan on only using this from your machine, and you have the Google Cloud SDK installed, you can just use application default credentials like this:
$ gcloud auth login
$ gcloud auth application-default login
$ gcloud config set project 'YOUR-AWESOME-PROJECT'
$ gcb .
FAQs
An API and CLI for building docker containers with Google Cloud Build.
The npm package gcbuild receives a total of 419 weekly downloads. As such, gcbuild popularity was classified as not popular.
We found that gcbuild demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.