1.3.0 • Published 1 year ago

@neurocode.io/azure-sas-token v1.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
1 year ago

Azure-SAS-token

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Vulnerabilities

Generate Azure SAS tokens on the edge with cloudflare workers and this library. This library has zero depdendencies.

We used it in our sepa-form-recogizer API

What is a SAS token?

sas

SAS token is a string that you generate and give your client for temp access to your Azure storage. The Azure Storage client library does not work in the browser since it uses NodeJS crypto to compute the HMAC SHA256.

This library uses webCrypto to compute the HMAC SHA256 and is thus compatible with cloudflare workers.

Install

Use either npm or yarn

npm i @neurocode.io/azure-sas-token
yarn add @neurocode.io/azure-sas-token

How to use the library

import { createBlobSas } from '@neurocode.io/azure-sas-token'

const expireInMin = 5

const { blobSasUrl } = await createBlobSas({
      accountKey: 'yourStorageAccountKey',
      accountName: 'yourAccountName',
      containerName: 'youStorageContainerName',
      blobName: 'someBlob.txt',
      permissions: 'rw',
      expiresOn: new Date(new Date().valueOf() + expireInMin * 60 * 1000)
})

Be careful with startsOn property. If you set the start time for a SAS to the current time, you may observe failures occurring intermittently for the first few minutes due to different machines having slight variations of the current time (known as clock skew).

In general, set the start time to be at least 15 minutes in the past. Or, don't set it at all :)

Current implementation

  • Blob SAS token
  • Container SAS token
  • Account SAS token