ryanerdmann / azure-storage-browser

A directory browser for Azure Storage Static Websites
MIT License
4 stars 2 forks source link

Azure Storage Browser

Azure Storage Browser is a simple directory browsing application for content in an Azure Storage Static Website.

It is similar to Directory Indexes (mod_autoindex) in Apache or Directory Browse in IIS, but implemented as a single-page application for use on modern static website hosting platforms like Azure Storage.

Demo

Example: https://azdirbrowser.z5.web.core.windows.net/

demo

Usage

To use the Azure Storage Browser, enable Static Website hosting on your storage account, and upload the following file:

index.html

<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Index of /</title>
</head>
<body>
  <div id="root"></div>
  <script crossorigin src="https://unpkg.com/azure-storage-browser/dist/azure-directory-browser.js"></script>
</body>
</html>

Contributing

This software is currently in preview.

To develop locally, use npm start.