Skip to content

Commit

Permalink
Fixes #48
Browse files Browse the repository at this point in the history
Fixes #234
  • Loading branch information
jmdobry committed Nov 15, 2016
1 parent 73a0764 commit 63fd52c
Show file tree
Hide file tree
Showing 17 changed files with 1,393 additions and 1,763 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on Google Cloud Platform.

[slack_badge]: https://img.shields.io/badge/slack-nodejs%20on%20gcp-E01563.svg
[slack_link]: https://gcp-slack.appspot.com/
[build_badge]: https://img.shields.io/travis/GoogleCloudPlatform/nodejs-docs-samples.svg?style=flat
[build_link]: https://travis-ci.org/GoogleCloudPlatform/nodejs-docs-samples
[build_badge]: https://img.shields.io/circleci/project/github/GoogleCloudPlatform/nodejs-docs-samples/master.svg?style=flat
[build_link]: https://circleci.com/gh/GoogleCloudPlatform/nodejs-docs-samples
[cov_badge]: https://img.shields.io/codecov/c/github/GoogleCloudPlatform/nodejs-docs-samples/master.svg?style=flat
[cov_link]: https://codecov.io/github/GoogleCloudPlatform/nodejs-docs-samples?branch=master
[cloud]: https://cloud.google.com/
Expand All @@ -32,22 +32,22 @@ on Google Cloud Platform.
* [Google Container Engine](#google-container-engine)
* [Google Cloud Functions (Alpha)](#google-cloud-functions-alpha)
* [**Storage and Databases**](#storage-and-databases)
* [Google Cloud Datastore (Beta)](#google-cloud-datastore-beta)
* [Google Cloud Datastore](#google-cloud-datastore)
* [Google Cloud Storage](#google-cloud-storage)
* [**Big Data**](#big-data)
* [Google BigQuery](#google-bigquery)
* [Google Cloud Pub/Sub](#google-cloud-pubsub)
* [**Machine Learning**](#machine-learning)
* [Google Cloud Natural Language API (Beta)](#google-cloud-natural-language-api-beta)
* [Google Cloud Natural Language API](#google-cloud-natural-language-api)
* [Google Cloud Prediction API](#google-cloud-prediction-api)
* [Google Cloud Speech API (Beta)](#google-cloud-speech-api-beta)
* [Google Translate API](#google-translate-api)
* [Google Cloud Vision API](#google-cloud-vision-api)
* [**Management Tools**](#management-tools)
* [Stackdriver Debugger (Beta)](#stackdriver-debugger-beta)
* [Stackdriver Logging (Beta)](#stackdriver-logging-beta)
* [Stackdriver Monitoring (Beta)](#stackdriver-monitoring-beta)
* [Stackdriver Trace (Beta)](#stackdriver-trace-beta)
* [Stackdriver Debugger](#stackdriver-debugger)
* [Stackdriver Logging](#stackdriver-logging)
* [Stackdriver Monitoring](#stackdriver-monitoring)
* [Stackdriver Trace](#stackdriver-trace)
* [**Networking**](#management-tools)
* [Google Cloud DNS](#google-cloud-dns)
* [Other sample applications](#other-sample-applications)
Expand Down Expand Up @@ -261,7 +261,7 @@ View the [Cloud Functions Node.js samples][functions_samples].

### Storage and Databases

#### Google Cloud Datastore (Beta)
#### Google Cloud Datastore

[Cloud Datastore][datastore_docs] is a NoSQL document database built for
automatic scaling, high performance, and ease of application development.
Expand Down Expand Up @@ -305,7 +305,7 @@ View the [Cloud Pub/Sub Node.js samples][pubsub_samples].

### Machine Learning

#### Google Cloud Natural Language API (Beta)
#### Google Cloud Natural Language API

[Cloud Natural Language API][language_docs] provides natural language
understanding technologies to developers, including sentiment analysis, entity
Expand Down Expand Up @@ -361,7 +361,7 @@ View the [Cloud Vision API Node.js samples][vision_samples].

### Management Tools

#### Stackdriver Debugger (Beta)
#### Stackdriver Debugger

[Stackdriver Debugger][debugger_docs] makes it easier to view the application
state without adding logging statements.
Expand All @@ -371,7 +371,7 @@ View the [Stackdriver Debugger Node.js sample][debugger_sample].
[debugger_docs]: https://cloud.google.com/debugger/docs/
[debugger_sample]: debugger

#### Stackdriver Logging (Beta)
#### Stackdriver Logging

[Stackdriver Logging][logging_docs] allows you to store, search, analyze,
monitor, and alert on log data and events from Google Cloud Platform and Amazon
Expand All @@ -382,7 +382,7 @@ View the [Stackdriver Logging Node.js samples][logging_samples].
[logging_docs]: https://cloud.google.com/logging/docs/
[logging_samples]: logging

#### Stackdriver Monitoring (Beta)
#### Stackdriver Monitoring

[Stackdriver Monitoring][monitoring_docs] collects metrics, events, and metadata
from Google Cloud Platform, Amazon Web Services (AWS), hosted uptime probes,
Expand All @@ -394,7 +394,7 @@ View the [Stackdriver Monitoring Node.js samples][monitoring_samples].
[monitoring_docs]: https://cloud.google.com/monitoring/docs/
[monitoring_samples]: monitoring

#### Stackdriver Trace (Beta)
#### Stackdriver Trace

[Stackdriver Trace][trace_docs] is a distributed tracing system for Google Cloud
Platform that collects latency data from App Engine applications and displays it
Expand Down
29 changes: 20 additions & 9 deletions datastore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,26 @@ View the [documentation][tasks_docs] or the [source code][tasks_code].

__Run the sample:__

Usage: `node tasks <command> [args]...`

Print usage:

node tasks

Example:

node tasks list
Usage: `node tasks.js <command> [args]...`

```
Commands:
new <description> Adds a task with a description <description>.
done <taskId> Marks the specified task as done.
list Lists all tasks ordered by creation time.
delete <taskId> Deletes a task.
Options:
--help Show help [boolean]
Examples:
node tasks.js new "Buy milk" Adds a task with description "Buy milk".
node tasks.js done 12345 Marks task 12345 as Done.
node tasks.js list Lists all tasks ordered by creation time
node tasks.js delete 12345 Deletes task 12345.
For more information, see https://cloud.google.com/datastore/docs
```

[tasks_docs]: https://cloud.google.com/datastore/docs/datastore-api-tutorial
[tasks_code]: tasks.js
Expand Down
Loading

0 comments on commit 63fd52c

Please sign in to comment.