File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -167,16 +167,16 @@ var app = firebase.initializeApp({ ... });
167167
168168Firebase Storage is not included in the server side Firebase npm module.
169169Instead, 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
176176In your code, you can access your Storage bucket using:
177177
178178```
179- var gcloud = require('gcloud ')({ ... });
179+ var gcloud = require('google-cloud ')({ ... });
180180var gcs = gcloud.storage();
181181var bucket = gcs.bucket('<your-firebase-storage-bucket>');
182182...
@@ -210,4 +210,4 @@ The Firebase changelog can be found at
210210## Browser/environment compatibility
211211
212212See [ ENVIRONMENTS.md] ( ENVIRONMENTS.md ) to see which browsers/environments are
213- supported for each feature.
213+ supported for each feature.
You can’t perform that action at this time.
0 commit comments