Google Cloud Platform Node.js Samples
Node.js samples for Google Cloud Platform products.
See cloud.google.com/nodejs to get up and running with Node.js on Google Cloud Platform.
Table of Contents
- Setup
- Client libraries
- Code samples
- Other sample applications
- Contributing
- License
Setup
Prerequisites
-
Install Node.js v4.5.0 or greater
-
Clone this repository:
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git
-
Change directory in to the project:
cd nodejs-docs-samples
-
Set the
GCLOUD_PROJECT
environment variable:Linux:
export GCLOUD_PROJECT=your-project-id
Windows:
set GCLOUD_PROJECT=your-project-id
Windows (PowerShell):
$env:GCLOUD_PROJECT="your-project-id"
-
Obtain authentication credentials.
Create local credentials by running the following command and following the oauth2 flow (read more about the command here):
gcloud beta auth application-default login
In non-Google Cloud environments, GCE instances created without the correct scopes, or local workstations where the
gcloud beta auth application-default login
command fails, use a service account by doing the following:- Go to API Manager -> Credentials
- Click "New Credentials", and create a service account or click here
- Download the JSON for this service account, and set the
GOOGLE_APPLICATION_CREDENTIALS
environment variable to point to the file containing the JSON credentials.
Set the
GOOGLE_APPLICATION_CREDENTIALS
environment variable:Linux:
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service_account_file.json
Windows:
set GOOGLE_APPLICATION_CREDENTIALS=/path/to/service_account_file.json
Windows (PowerShell):
$env:GOOGLE_APPLICATION_CREDENTIALS="/path/to/service_account_file.json"
Note for code running on GCE, GAE, or other environments:
On Google App Engine, the credentials should be found automatically.
On Google Compute Engine, the credentials should be found automatically, but require that you create the instance with the correct scopes.
gcloud compute instances create --scopes="https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/compute.readonly" test-instance
If you did not create the instance with the right scopes, you can still upload a JSON service account and set
GOOGLE_APPLICATION_CREDENTIALS
as described.Read more about Google Cloud Platform Authentication.
How to run a sample
-
Change directory to one of the sample folders, e.g.
bigquery
:cd bigquery/
-
Install the sample's dependencies (see the sample's README for details):
npm install
or
yarn install
Note: Use
npm
oryarn
exclusively, don't mix them. -
Run the sample:
node sample_file.js [args]...
Client libraries
Google Cloud Node.js client library
The recommended, idiomatic client for Google Cloud Platform services.
Google API Node.js client library
An older Node.js client library for making REST requests to Google APIs. Use this for Google Cloud APIs that are not yet supported by the Google Cloud Node.js client library.
Code samples
Compute
Google App Engine (flexible environment)
The App Engine flexible environment is based on Google Compute Engine and automatically scales your app up and down while balancing the load.
View the App Engine flexible environment Node.js samples.
Google Compute Engine
Compute Engine lets you create and run virtual machines on Google infrastructure.
View the Compute Engine Node.js samples.
Google Container Engine
Container Engine: Run Docker containers on Google Cloud Platform, powered by Kubernetes.
View the Container Engine Node.js samples.
Google Cloud Functions (Alpha)
Cloud Functions is a lightweight, event-based, asynchronous compute solution that allows you to create small, single-purpose functions that respond to Cloud events without the need to manage a server or a runtime environment.
View the Cloud Functions Node.js samples.
Storage and Databases
Google Cloud Datastore
Cloud Datastore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
View the Cloud Datastore Node.js samples.
Google Cloud Storage
Cloud Storage allows world-wide storage and retrieval of any amount of data at any time.
View the Cloud Storage Node.js samples.
Big Data
Google BigQuery
BigQuery is Google's fully managed, petabyte scale, low cost analytics data warehouse.
View the BigQuery Node.js samples.
Google Cloud Pub/Sub
Cloud Pub/Sub is a fully-managed real-time messaging service that allows you to send and receive messages between independent applications.
View the Cloud Pub/Sub Node.js samples.
Machine Learning
Google Cloud Natural Language API
Cloud Natural Language API provides natural language understanding technologies to developers, including sentiment analysis, entity recognition, and syntax analysis. This API is part of the larger Cloud Machine Learning API.
View the Cloud Natural Language API Node.js samples.
Google Cloud Prediction API
The Cloud Prediction API provides a RESTful API to build Machine Learning models.
View the Cloud Prediction API Node.js samples.
Google Cloud Speech API (Beta)
The Cloud Speech API enables easy integration of Google speech recognition technologies into developer applications.
View the Cloud Speech API Node.js samples.
Google Translate API
With the Google Translate API, you can dynamically translate text between thousands of language pairs.
View the Translate API Node.js samples.
Google Cloud Vision API
The Cloud Vision API allows developers to easily integrate vision detection features within applications, including image labeling, face and landmark detection, optical character recognition (OCR), and tagging of explicit content.
View the Cloud Vision API Node.js samples.
Management Tools
Stackdriver Debugger
Stackdriver Debugger makes it easier to view the application state without adding logging statements.
View the Stackdriver Debugger Node.js sample.
Stackdriver Logging
Stackdriver Logging allows you to store, search, analyze, monitor, and alert on log data and events from Google Cloud Platform and Amazon Web Services.
View the Stackdriver Logging Node.js samples.
Stackdriver Monitoring
Stackdriver Monitoring collects metrics, events, and metadata from Google Cloud Platform, Amazon Web Services (AWS), hosted uptime probes, application instrumentation, and a variety of common application components including Cassandra, Nginx, Apache Web Server, Elasticsearch and many others.
View the Stackdriver Monitoring Node.js samples.
Stackdriver Trace
Stackdriver Trace is a distributed tracing system for Google Cloud Platform that collects latency data from App Engine applications and displays it in near real time in the Google Cloud Platform Console.
View the Stackdriver Trace Node.js sample.
Networking
Google Cloud DNS
Publish your domain names using Google's infrastructure for production-quality, high-volume DNS services. Google's global network of anycast name servers provide reliable, low-latency authoritative name lookups for your domains from anywhere in the world. Read more about Google Cloud DNS.
View the Google Cloud DNS Node.js sample.
Other sample applications
Bookshelf tutorial app
The Bookshelf app is a sample web app written in Node.js that shows you how to use a variety of Google Cloud Platform features.
View the tutorial or the source code.
LabelCat
LabelCat is a NodeJS app that uses the Google Cloud Prediction API to automatically label GitHub Issues as they are created.
View the tutorial or the source code.
Node.js Codelab
In the Node.js Web App Google Cloud Platform codelab, you learn how to integrate Google Cloud Platform services into a Node.js web application to store data, upload images, and authenticate users.
View the tutorial or the source code.
Contributing
Contributions welcome! See the Contributing Guide.
License
Apache Version 2.0
See LICENSE