Package Exports
- verdaccio-google-cloud
- verdaccio-google-cloud/build/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (verdaccio-google-cloud) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
verdaccio-google-cloud
☁️📦 Google Cloud storage plugin for verdaccio
⚠️⚠️ This plugin is experimental and might be unstable. It requires further testing. ⚠️⚠️
npm i -g verdaccio-google-cloud
yarn global add verdaccio-google-cloud
pnpm i -g verdaccio-google-cloudRequirements
- Google Cloud Account
- Service account with 'Cloud Datastore Owner' role and read/write access to the bucket
- Verdaccio server (see below)
npm install -g verdaccio@latest
yarn global add verdaccio@latest
pnpm -g verdaccio@latestConfiguration
Complete configuration example:
store:
google-cloud:
## google project id
projectId: project-01 || env (GOOGLE_CLOUD_VERDACCIO_PROJECT_ID)
## namespace for metadata database
kind: someRandonMetadataDatabaseKey
## this pluging do not create the bucket, it has to exist
bucket: my-bucket-name
## google cloud recommend this file only for development
## this field is not mandatory
keyFilename: /path/project-01.json || env (GOOGLE_CLOUD_VERDACCIO_KEY)
## default validation is, it can be overrided by
## https://cloud.google.com/nodejs/docs/reference/storage/1.6.x/File.html#createWriteStream
# validation: crc32c
## Enable/disable resumable uploads to GC Storage
## By default it's enabled in `@google-cloud/storage`
## May cause failures for small package uploads so it is recommended to set it to `false`
## @see https://stackoverflow.com/questions/53172050/google-cloud-storage-invalid-upload-request-error-bad-request
resumable: trueDefine env whether you want load the value from environment variables.
If you are willing to use some of
envjust do not define properties onconfig.yamlor let them emtpy. Properties have preceden overenvvariables.
Disclaimer
⚠️⚠️ This plugin is experimental and might be unstable. It requires further testing. ⚠️⚠️