1.0.0 • Published 11 months ago

google_cloud_storagey v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

Инициализация:

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
})
1.0.0

11 months ago