mirror of
https://github.com/musix-org/musix-oss
synced 2025-01-11 01:44:50 +00:00
153 lines
10 KiB
Markdown
153 lines
10 KiB
Markdown
|
[//]: # "This README.md file is auto-generated, all changes to this file will be lost."
|
||
|
[//]: # "To regenerate it, use `python -m synthtool`."
|
||
|
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/>
|
||
|
|
||
|
# [Google Cloud Storage: Node.js Client](https://github.com/googleapis/nodejs-storage)
|
||
|
|
||
|
[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
|
||
|
[![npm version](https://img.shields.io/npm/v/@google-cloud/storage.svg)](https://www.npmjs.org/package/@google-cloud/storage)
|
||
|
[![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-storage/master.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-storage)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
> Node.js idiomatic client for [Cloud Storage][product-docs].
|
||
|
|
||
|
[Cloud Storage](https://cloud.google.com/storage/docs) allows world-wide
|
||
|
storage and retrieval of any amount of data at any time. You can use Google
|
||
|
Cloud Storage for a range of scenarios including serving website content,
|
||
|
storing data for archival and disaster recovery, or distributing large data
|
||
|
objects to users via direct download.
|
||
|
|
||
|
|
||
|
* [Google Cloud Storage Node.js Client API Reference][client-docs]
|
||
|
* [Google Cloud Storage Documentation][product-docs]
|
||
|
* [github.com/googleapis/nodejs-storage](https://github.com/googleapis/nodejs-storage)
|
||
|
|
||
|
Read more about the client libraries for Cloud APIs, including the older
|
||
|
Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
||
|
|
||
|
[explained]: https://cloud.google.com/apis/docs/client-libraries-explained
|
||
|
|
||
|
**Table of contents:**
|
||
|
|
||
|
|
||
|
* [Quickstart](#quickstart)
|
||
|
* [Before you begin](#before-you-begin)
|
||
|
* [Installing the client library](#installing-the-client-library)
|
||
|
* [Using the client library](#using-the-client-library)
|
||
|
* [Samples](#samples)
|
||
|
* [Versioning](#versioning)
|
||
|
* [Contributing](#contributing)
|
||
|
* [License](#license)
|
||
|
|
||
|
## Quickstart
|
||
|
|
||
|
### Before you begin
|
||
|
|
||
|
1. [Select or create a Cloud Platform project][projects].
|
||
|
1. [Enable billing for your project][billing].
|
||
|
1. [Enable the Google Cloud Storage API][enable_api].
|
||
|
1. [Set up authentication with a service account][auth] so you can access the
|
||
|
API from your local workstation.
|
||
|
|
||
|
### Installing the client library
|
||
|
|
||
|
```bash
|
||
|
npm install @google-cloud/storage
|
||
|
```
|
||
|
|
||
|
|
||
|
### Using the client library
|
||
|
|
||
|
```javascript
|
||
|
// Imports the Google Cloud client library
|
||
|
const {Storage} = require('@google-cloud/storage');
|
||
|
|
||
|
// Creates a client
|
||
|
const storage = new Storage();
|
||
|
|
||
|
/**
|
||
|
* TODO(developer): Uncomment these variables before running the sample.
|
||
|
*/
|
||
|
// const bucketName = 'bucket-name';
|
||
|
|
||
|
async function createBucket() {
|
||
|
// Creates the new bucket
|
||
|
await storage.createBucket(bucketName);
|
||
|
console.log(`Bucket ${bucketName} created.`);
|
||
|
}
|
||
|
|
||
|
createBucket();
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
## Samples
|
||
|
|
||
|
Samples are in the [`samples/`](https://github.com/googleapis/nodejs-storage/tree/master/samples) directory. The samples' `README.md`
|
||
|
has instructions for running the samples.
|
||
|
|
||
|
| Sample | Source Code | Try it |
|
||
|
| --------------------------- | --------------------------------- | ------ |
|
||
|
| Acl | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/acl.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/acl.js,samples/README.md) |
|
||
|
| Bucket Lock | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/bucketLock.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/bucketLock.js,samples/README.md) |
|
||
|
| Storage Get Bucket Metadata. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/bucketMetadata.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/bucketMetadata.js,samples/README.md) |
|
||
|
| Buckets | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/buckets.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/buckets.js,samples/README.md) |
|
||
|
| Encryption | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/encryption.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/encryption.js,samples/README.md) |
|
||
|
| Files | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/files.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/files.js,samples/README.md) |
|
||
|
| Activate HMAC SA Key. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeyActivate.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeyActivate.js,samples/README.md) |
|
||
|
| Create HMAC SA Key. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeyCreate.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeyCreate.js,samples/README.md) |
|
||
|
| Deactivate HMAC SA Key. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeyDeactivate.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeyDeactivate.js,samples/README.md) |
|
||
|
| Delete HMAC SA Key. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeyDelete.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeyDelete.js,samples/README.md) |
|
||
|
| Get HMAC SA Key Metadata. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeyGet.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeyGet.js,samples/README.md) |
|
||
|
| List HMAC SA Keys Metadata. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/hmacKeysList.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/hmacKeysList.js,samples/README.md) |
|
||
|
| Iam | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/iam.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/iam.js,samples/README.md) |
|
||
|
| Notifications | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/notifications.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/notifications.js,samples/README.md) |
|
||
|
| Quickstart | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/quickstart.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/quickstart.js,samples/README.md) |
|
||
|
| Requester Pays | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/requesterPays.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/requesterPays.js,samples/README.md) |
|
||
|
| Upload a directory to a bucket. | [source code](https://github.com/googleapis/nodejs-storage/blob/master/samples/uploadDirectory.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadDirectory.js,samples/README.md) |
|
||
|
|
||
|
|
||
|
|
||
|
The [Google Cloud Storage Node.js Client API Reference][client-docs] documentation
|
||
|
also contains samples.
|
||
|
|
||
|
## Versioning
|
||
|
|
||
|
This library follows [Semantic Versioning](http://semver.org/).
|
||
|
|
||
|
|
||
|
This library is considered to be **General Availability (GA)**. This means it
|
||
|
is stable; the code surface will not change in backwards-incompatible ways
|
||
|
unless absolutely necessary (e.g. because of critical security issues) or with
|
||
|
an extensive deprecation period. Issues and requests against **GA** libraries
|
||
|
are addressed with the highest priority.
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
More Information: [Google Cloud Platform Launch Stages][launch_stages]
|
||
|
|
||
|
[launch_stages]: https://cloud.google.com/terms/launch-stages
|
||
|
|
||
|
## Contributing
|
||
|
|
||
|
Contributions welcome! See the [Contributing Guide](https://github.com/googleapis/nodejs-storage/blob/master/CONTRIBUTING.md).
|
||
|
|
||
|
## License
|
||
|
|
||
|
Apache Version 2.0
|
||
|
|
||
|
See [LICENSE](https://github.com/googleapis/nodejs-storage/blob/master/LICENSE)
|
||
|
|
||
|
[client-docs]: https://googleapis.dev/nodejs/storage/latest
|
||
|
[product-docs]: https://cloud.google.com/storage
|
||
|
[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
|
||
|
[projects]: https://console.cloud.google.com/project
|
||
|
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
|
||
|
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=storage-api.googleapis.com
|
||
|
[auth]: https://cloud.google.com/docs/authentication/getting-started
|