google-cloud-storage-node-boilerplate icon indicating copy to clipboard operation
google-cloud-storage-node-boilerplate copied to clipboard

Boilerplate Node.js app for handling user uploads to Google Cloud Storage

Results 2 google-cloud-storage-node-boilerplate issues
Sort by recently updated
recently updated
newest added

https://github.com/alexandersimoes/google-cloud-storage-node-boilerplate/blob/e29b93fadd6a66875085498d0959195bd56bdc89/index.js#L3 https://cloud.google.com/nodejs/docs/reference/storage/2.0.x/File.html#createWriteStream the syntax now looks like: ```javascript const fs = require('fs'); const {Storage} = require('@google-cloud/storage'); const storage = new Storage(); const myBucket = storage.bucket('my-bucket'); const file = myBucket.file('my-file'); ```

I've run this project with my google account. I replaced project_id and keyFilePath with mine and deployed it to heroku. But I got `Internal server error` when I try to...