Gathering detailed insights and metrics for parse-server-azure-storage-reloaded
Gathering detailed insights and metrics for parse-server-azure-storage-reloaded
Gathering detailed insights and metrics for parse-server-azure-storage-reloaded
Gathering detailed insights and metrics for parse-server-azure-storage-reloaded
Use Azure Blob Storage with Parse Server
npm install parse-server-azure-storage-reloaded
Typescript
Module System
Min. Node Version
Node Version
NPM Version
49.9
Supply Chain
65.4
Quality
68.6
Maintenance
25
Vulnerability
95
License
JavaScript (100%)
Total Downloads
10,501
Last Day
2
Last Week
33
Last Month
64
Last Year
487
MIT License
1 Stars
50 Commits
2 Forks
1 Watchers
2 Branches
1 Contributors
Updated on Mar 09, 2023
Minified
Minified + Gzipped
Latest Version
1.6.10
Package Id
parse-server-azure-storage-reloaded@1.6.10
Unpacked Size
11.49 kB
Size
3.99 kB
File Count
6
NPM Version
6.13.4
Node Version
12.16.1
Cumulative downloads
Total Downloads
Last Day
0%
2
Compared to previous day
Last Week
3,200%
33
Compared to previous week
Last Month
20.8%
64
Compared to previous month
Last Year
-31.9%
487
Compared to previous year
This module allows you to use Azure Blob Storage with the open source Parse Server, brought to you by your friends in Microsoft's Open Source Engineering team.
First, ensure that you have an Azure Blob Storage account, with a container setup. Then, install the adapter:
npm install parse-server-azure-storage-reloaded
By default, Parse will proxy all files - meaning that your end user accesses the files via your open source Parse-Server, not directly by going to Azure Blob storage. This is useful if you want files to only be accessible for logged in users or have otherwise security considerations.
If your files can be public, you'll win performance by accessing files directly on Azure Blob Storage. To enable, ensure that your container's security policy is set to blob
. Then, in your AzureStorageAdapter
options, set directAccess: true
.
var ParseServer = require('parse-server').ParseServer;
var AzureStorageAdapter = require('parse-server-azure-storage-reloaded').AzureStorageAdapter;
var account = 'YOUR_AZURE_STORAGE_ACCOUNT_NAME';
var container = 'YOUR_AZURE_STORAGE_CONTAINER_NAME';
var options = {
accessKey: 'YOUR_ACCESS_KEY',
directAccess: false // If set to true, files will be served by Azure Blob Storage directly
}
var api = new ParseServer({
appId: process.env.APP_ID || 'myAppId',
masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
serverURL: process.env.SERVER_URL || 'http://localhost:1337'
(...)
filesAdapter: new AzureStorageAdapter(account, container, options);
});
The MIT License (MIT); Copyright (c) 2016 Felix Rieseberg; Copyright (c) 2019 Taariq Mullins and Microsoft Corporation. Please see LICENSE
for details.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
42 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More