An open API service indexing awesome lists of open source software.

https://github.com/carlozamagni/fastify-google-cloud-storage

Fastify plugin that exposes a GCP Cloud Storage client instance.
https://github.com/carlozamagni/fastify-google-cloud-storage

fastify fastify-plugin gcp nodejs storage

Last synced: 2 months ago
JSON representation

Fastify plugin that exposes a GCP Cloud Storage client instance.

Awesome Lists containing this project

README

          

# fastify-google-cloud-storage

## Install

```
npm install --save fastify-google-cloud-storage
```

## Usage

Import "fastify-google-cloud-storage" and register it into Fastify instance

```javascript
fastify.register(require('fastify-google-cloud-storage'), {
projectId: '', // [string, required] GCP project id
keyFilename: '' // [string, optional] path to service account json file
})
```
you can access the Cloud Storage client via:

```javascript
const cloudStorage = fastify.googleCloudStorage
```