Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: gcloud-node or gcloud #200

Merged
merged 6 commits into from
Sep 10, 2014
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 37 additions & 11 deletions docs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ <h1 class="logo"><img src="img/logo-full.svg" alt="Google Cloud Platform" /></h1
<div class="container clearfix">
<div class="col col-left">
<h1>gcloud</h1>
<p><code>gcloud-node</code> is the Google Cloud Client Library for Node.js - an idiomatic, intuitive, and natural way for Node.js developers to integrate with Google Cloud Platform services, like Cloud Datastore and Cloud Storage.</p>
<p><code>gcloud</code> is the Google Cloud Client Library for Node.js
- an idiomatic, intuitive, and natural way for Node.js developers to
integrate with Google Cloud Platform services, like Cloud Datastore
and Cloud Storage.</p>
</div><!-- end of .col.col-left -->

<div class="col col-right">
Expand Down Expand Up @@ -59,8 +62,18 @@ <h2>One-line npm install</h2>
<div class="col col-left">
<h3 class="block-title">What is it?</h3>

<p><code>gcloud-node</code> is a client library for accessing Google Cloud Platform services that significantly reduces the boilerplate code you have to write. The library is provides high-level API abstractions so they're easier to understand. And, it embraces idioms of Node.js, such as returning Readable streams or errors as the first object in callbacks. All this means you spend more time creating code that matters to you.</p>
<p><code>gcloud-node</code> is configured to access Google Cloud services and authorize (OAuth2) automatically on your behalf. With a one line install and a private key, you are up and ready to go. Better yet, if you are running on a Google Compute Engine instance, the one line install is enough!</p>
<p><code>gcloud</code> is a client library for accessing Google
Cloud Platform services that significantly reduces the boilerplate
code you have to write. The library is provides high-level API

This comment was marked as spam.

This comment was marked as spam.

abstractions so they're easier to understand. And, it embraces
idioms of Node.js, such as returning Readable streams or errors
as the first object in callbacks. All this means you spend more
time creating code that matters to you.</p>
<p><code>gcloud</code> is configured to access Google Cloud
services and authorize (OAuth 2.0) automatically on your behalf.
With a one line install and a private key, you are up and ready
to go. Better yet, if you are running on a Google Compute Engine
instance, the one line install is enough!</p>

</div><!-- end of .col.col-left -->

Expand All @@ -76,7 +89,7 @@ <h4>Retrieve Datastore Entities</h4>
});

dataset.get(dataset.key('Product', 123), function(err, entity) {
console.log(err || entity);
console.log(err, entity);
});</div>

</div><!-- end of .col.col-right -->
Expand All @@ -86,13 +99,26 @@ <h4>Retrieve Datastore Entities</h4>
<section class="block">
<div class="container clearfix">
<h3 class="block-title">FAQ</h3>

<h4 class="">What is the relationship between <code>gcloud-node</code> and the <code>gcloud</code> commandline tool?</h4>
<p>Both the <code>gcloud</code> commandline tool and <code>gcloud-node</code> are part of the Google Cloud SDK: a collection of tools and libraries that enable you to easily create and manage resources on Google Cloud Platform. The <code>gcloud</code> commandline tool can be used to manage both your development workflow and your Google Cloud Platform resources while <code>gcloud-node</code> is the Google Cloud Client Library for Node.js.</p>

<h4 class="">What is the relationship between <code>gcloud-node</code> and the <code>Google APIs NodeJS Client</code>?</h4>
<p>The <code>Google APIs NodeJS Client</code> is a client library for using the broad set of Google APIs. <code>gcloud-node</code> is built specifically for the Google Cloud Platform and is the recommended way to integrate Google Cloud APIs into your Node.js applications. If your application requires both Google Cloud and other Google APIs, the 2 libraries may be used by your application.</p>


<h4 class="">What is the relationship between <code>gcloud</code> package

This comment was marked as spam.

This comment was marked as spam.

and the <code>gcloud</code> commandline tool?</h4>
<p>Both the <code>gcloud</code> commandline tool and

This comment was marked as spam.

This comment was marked as spam.

<code>gcloud</code> package is a part of the Google Cloud SDK: a collection
of tools and libraries that enable you to easily create and manage
resources on Google Cloud Platform. The <code>gcloud</code> commandline
tool can be used to manage both your development workflow and your
Google Cloud Platform resources while <code>gcloud</code> package is the

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

Google Cloud Client Library for Node.js.</p>

<h4 class="">What is the relationship between <code>gcloud</code>

This comment was marked as spam.

This comment was marked as spam.

and the <code>Google APIs Node.js Client</code>?</h4>
<p>The <code>Google APIs Node.js Client</code> is a client library for
using the broad set of Google APIs.
<code>gcloud</code> is built specifically for the Google Cloud Platform
and is the recommended way to integrate Google Cloud APIs into your
Node.js applications. If your application requires both Google Cloud and
other Google APIs, the 2 libraries may be used by your application.</p>

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.


</div>
</section> <!-- end of FAQ -->
</article><!-- end of .main -->