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.
Example: https://azdirbrowser.z5.web.core.windows.net/
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>
This software is currently in preview.
To develop locally, use npm start
.