Skip to content

Commit 63fd52c

Browse files
committed
Fixes #48
Fixes #234
1 parent 73a0764 commit 63fd52c

17 files changed

+1393
-1763
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on Google Cloud Platform.
99

1010
[slack_badge]: https://img.shields.io/badge/slack-nodejs%20on%20gcp-E01563.svg
1111
[slack_link]: https://gcp-slack.appspot.com/
12-
[build_badge]: https://img.shields.io/travis/GoogleCloudPlatform/nodejs-docs-samples.svg?style=flat
13-
[build_link]: https://travis-ci.org/GoogleCloudPlatform/nodejs-docs-samples
12+
[build_badge]: https://img.shields.io/circleci/project/github/GoogleCloudPlatform/nodejs-docs-samples/master.svg?style=flat
13+
[build_link]: https://circleci.com/gh/GoogleCloudPlatform/nodejs-docs-samples
1414
[cov_badge]: https://img.shields.io/codecov/c/github/GoogleCloudPlatform/nodejs-docs-samples/master.svg?style=flat
1515
[cov_link]: https://codecov.io/github/GoogleCloudPlatform/nodejs-docs-samples?branch=master
1616
[cloud]: https://cloud.google.com/
@@ -32,22 +32,22 @@ on Google Cloud Platform.
3232
* [Google Container Engine](#google-container-engine)
3333
* [Google Cloud Functions (Alpha)](#google-cloud-functions-alpha)
3434
* [**Storage and Databases**](#storage-and-databases)
35-
* [Google Cloud Datastore (Beta)](#google-cloud-datastore-beta)
35+
* [Google Cloud Datastore](#google-cloud-datastore)
3636
* [Google Cloud Storage](#google-cloud-storage)
3737
* [**Big Data**](#big-data)
3838
* [Google BigQuery](#google-bigquery)
3939
* [Google Cloud Pub/Sub](#google-cloud-pubsub)
4040
* [**Machine Learning**](#machine-learning)
41-
* [Google Cloud Natural Language API (Beta)](#google-cloud-natural-language-api-beta)
41+
* [Google Cloud Natural Language API](#google-cloud-natural-language-api)
4242
* [Google Cloud Prediction API](#google-cloud-prediction-api)
4343
* [Google Cloud Speech API (Beta)](#google-cloud-speech-api-beta)
4444
* [Google Translate API](#google-translate-api)
4545
* [Google Cloud Vision API](#google-cloud-vision-api)
4646
* [**Management Tools**](#management-tools)
47-
* [Stackdriver Debugger (Beta)](#stackdriver-debugger-beta)
48-
* [Stackdriver Logging (Beta)](#stackdriver-logging-beta)
49-
* [Stackdriver Monitoring (Beta)](#stackdriver-monitoring-beta)
50-
* [Stackdriver Trace (Beta)](#stackdriver-trace-beta)
47+
* [Stackdriver Debugger](#stackdriver-debugger)
48+
* [Stackdriver Logging](#stackdriver-logging)
49+
* [Stackdriver Monitoring](#stackdriver-monitoring)
50+
* [Stackdriver Trace](#stackdriver-trace)
5151
* [**Networking**](#management-tools)
5252
* [Google Cloud DNS](#google-cloud-dns)
5353
* [Other sample applications](#other-sample-applications)
@@ -261,7 +261,7 @@ View the [Cloud Functions Node.js samples][functions_samples].
261261

262262
### Storage and Databases
263263

264-
#### Google Cloud Datastore (Beta)
264+
#### Google Cloud Datastore
265265

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

306306
### Machine Learning
307307

308-
#### Google Cloud Natural Language API (Beta)
308+
#### Google Cloud Natural Language API
309309

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

362362
### Management Tools
363363

364-
#### Stackdriver Debugger (Beta)
364+
#### Stackdriver Debugger
365365

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

374-
#### Stackdriver Logging (Beta)
374+
#### Stackdriver Logging
375375

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

385-
#### Stackdriver Monitoring (Beta)
385+
#### Stackdriver Monitoring
386386

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

397-
#### Stackdriver Trace (Beta)
397+
#### Stackdriver Trace
398398

399399
[Stackdriver Trace][trace_docs] is a distributed tracing system for Google Cloud
400400
Platform that collects latency data from App Engine applications and displays it

datastore/README.md

+20-9
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,26 @@ View the [documentation][tasks_docs] or the [source code][tasks_code].
3333

3434
__Run the sample:__
3535

36-
Usage: `node tasks <command> [args]...`
37-
38-
Print usage:
39-
40-
node tasks
41-
42-
Example:
43-
44-
node tasks list
36+
Usage: `node tasks.js <command> [args]...`
37+
38+
```
39+
Commands:
40+
new <description> Adds a task with a description <description>.
41+
done <taskId> Marks the specified task as done.
42+
list Lists all tasks ordered by creation time.
43+
delete <taskId> Deletes a task.
44+
45+
Options:
46+
--help Show help [boolean]
47+
48+
Examples:
49+
node tasks.js new "Buy milk" Adds a task with description "Buy milk".
50+
node tasks.js done 12345 Marks task 12345 as Done.
51+
node tasks.js list Lists all tasks ordered by creation time
52+
node tasks.js delete 12345 Deletes task 12345.
53+
54+
For more information, see https://cloud.google.com/datastore/docs
55+
```
4556

4657
[tasks_docs]: https://cloud.google.com/datastore/docs/datastore-api-tutorial
4758
[tasks_code]: tasks.js

0 commit comments

Comments
 (0)