I search an easy way to get a compile pure javascript file(s) for working with azure storage (blob/datalake) without npm/node?
I have old/new websites in .net. When I want to work with azure, samples and libraries are great for c#. But when you require javascript (in a web browser front-end way), it look like you require to work with npm and node.
I search the easiest way to use the sdk for a team that never used NPM and node.
Just to add a little more description for @Gaurav Mantri's comment. You can use @azure/storage-blob package which is browser compatible. Previously, azure-storage was used but now it got deprecated.
The client library in JavaScript is to consume Microsoft Azure Storage Blob service. client libraries in this package provides:-
To use this client library in the browser, first you need to use a bundler which converts the code to work for browser.
REFERENCES: