Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parse-server-azure-config

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-server-azure-config

A module to generate configuration for your parse server on azure

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

Parse Server Azure Config

A package to simplify configuration of parse server on azure managed services.

Exports an object with default configurations for storage, push, server, and dashboard.

let config = require('parse-server-azure-config');
let ParseServer = require('parse-server').ParseServer;
let ParseDashboard = require('parse-dashboard');
let express = require('express');

let options = {
  defaults: 'config.js', // file to load with default user configuration
  secrets: 'secrets.js'  // file to load secrets
}

let {
  server,     // parse server configuration options
  storage,    // parse server azure storage configuration options
  push,       // parse server azure push configuration options
  dashboard   // parse dashboard configuration options
} = config(__dirname, options);

let app = express();
app.use('/parse', new ParseServer(server));
app.use('/parse-dashboard', ParseDashboard(dashboard));

app.listen(process.env.PORT);

FAQs

Package last updated on 12 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc