Socket
Socket
Sign inDemoInstall

@vtfk/azure-storage-blob

Package Overview
Dependencies
1
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "@vtfk/azure-storage-blob",
"version": "1.0.1",
"version": "1.0.2",
"description": "Convenience wrapper around @azure/storage-blob",

@@ -5,0 +5,0 @@ "main": "src/index.js",

# (WIP) azure-blob-storage
High-level API in front of [@azure/storage-blob](https://www.npmjs.com/package/@azure/storage-blob)
High-level API for Azure Blob Storage operations.
Uses the [@azure/storage-blob](https://www.npmjs.com/package/@azure/storage-blob) SDK
# Install

@@ -78,3 +80,3 @@

```js
const content = await container.readFile('test.json')
const content = await container.read('test.json')
```

@@ -85,3 +87,3 @@

```js
await container.removeFile('test.json')
await container.remove('test.json')
```

@@ -88,0 +90,0 @@

@@ -100,4 +100,4 @@ const {

list: () => listBlob,
readFile: filename => readBlob(filename),
removeFile: filename => removeBlob(filename),
read: filename => readBlob(filename),
remove: filename => removeBlob(filename),
writeText: (filename, content) => writeTextBlob(filename, content)

@@ -104,0 +104,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc