Skip to content

Commit 7edf649

Browse files
Shyam-ChenJosh Crowther
authored andcommitted
docs(firebase): gcloud -> google-cloud (#718)
1 parent 66980bd commit 7edf649

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/firebase/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,16 +167,16 @@ var app = firebase.initializeApp({ ... });
167167

168168
Firebase Storage is not included in the server side Firebase npm module.
169169
Instead, you can use the
170-
[`gcloud` Node.js client](https://googlecloudplatform.github.io/gcloud-node).
170+
[`google-cloud` Node.js client](https://github.com/GoogleCloudPlatform/google-cloud-node).
171171

172172
```
173-
$ npm install --save gcloud
173+
$ npm install --save google-cloud
174174
```
175175

176176
In your code, you can access your Storage bucket using:
177177

178178
```
179-
var gcloud = require('gcloud')({ ... });
179+
var gcloud = require('google-cloud')({ ... });
180180
var gcs = gcloud.storage();
181181
var bucket = gcs.bucket('<your-firebase-storage-bucket>');
182182
...
@@ -210,4 +210,4 @@ The Firebase changelog can be found at
210210
## Browser/environment compatibility
211211

212212
See [ENVIRONMENTS.md](ENVIRONMENTS.md) to see which browsers/environments are
213-
supported for each feature.
213+
supported for each feature.

0 commit comments

Comments
 (0)