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.
- Setup
- Client libraries
- Code samples
- Other sample applications
- Contributing
- License
-
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.
-
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
-
Run the sample:
node sample_file.js [args]...
-
Read the Contributing Guide.
-
Set the
TEST_BUCKET_NAME
environment variable to the name of a test Google Cloud Storage bucket:Linux:
export TEST_BUCKET_NAME=your-bucket-name
Windows:
set TEST_BUCKET_NAME=your-bucket-name
Windows (PowerShell):
$env:TEST_BUCKET_NAME="your-bucket-name"
-
In a terminal, start Redis:
redis-server
-
In another terminal, start
memcached
:memcached
-
In another terminal, run the unit tests from the root of the project:
npm test
or with coverage:
npm run coverage
-
Then run the system tests from the root of the project:
npm run system-test
or with coverage:
npm run system-cover
-
Or run all the tests at once with coverage:
npm run all-cover
The idiomatic client for Google Cloud Platform services.
Node.js client library for Google APIs.
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.
Compute Engine lets you create and run virtual machines on Google infrastructure.
View the Compute Engine Node.js samples.
Container Engine: Run Docker containers on Google Cloud Platform, powered by Kubernetes.
View the Container Engine Node.js samples.
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.
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.
Cloud Storage allows world-wide storage and retrieval of any amount of data at any time.
View the Cloud Storage Node.js samples.
BigQuery is Google's fully managed, petabyte scale, low cost analytics data warehouse.
View the BigQuery Node.js samples.
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.
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.
The Cloud Prediction API provides a RESTful API to build Machine Learning models.
View the Cloud Prediction API Node.js samples.
The Cloud Speech API enables easy integration of Google speech recognition technologies into developer applications.
View the Cloud Speech API Node.js samples.
With the Google Translate API, you can dynamically translate text between thousands of language pairs.
View the Translate API Node.js samples.
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.
Stackdriver Debugger makes it easier to view the application state without adding logging statements.
View the Stackdriver Debugger Node.js sample.
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 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 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.
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.
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 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.
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.
Contributions welcome! See the Contributing Guide.
Apache Version 2.0
See LICENSE