google_cloud_storagey
v1.0.0
Published
Инициализация: ``` const GCS = require('@ktteam/google_cloud_storage');
Downloads
3
Readme
Инициализация:
const GCS = require('@ktteam/google_cloud_storage');
const gcs = new GCS({
keyPath: __dirname + '/key.json',
projectId: 'fm-logistics-project',
bucket: 'fmlua-test'
});
Чтение/запись:
gcs.put('test text').then(id => {
console.log(id); // hash sha256
gcs.get(id).then(console.log); // out: test text
})