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

azur

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azur

Azure Web App Deployment Automation

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
increased by900%
Maintainers
1
Weekly downloads
 
Created
Source

Basic Microsoft Azure App Service Automation

Supports deployment of a zip archive to Azure App Service via Git from within Node.js.

At this point in time, this is very much a work-in-progress and the API may be subject to change. Use at your own risk.

Install

Requires Node >= 6.

npm install azur --save-dev

Usage

import Application from 'azur';

const app = new Application({
  appName: '<your-site>', // http://<your-site>.azurewebsites.net/
  username: '<deployment-username>', // Microsoft Azure Git Deployment Username
  password: '<deployment-password>', // Microsoft Azure Git Deployment Password
  gitName: 'Automation', // Deployment Commit Author
  gitEmail: 'noreply@nhardy.id.au', // Deployment Commit E-mail
});

app.deploy({
  archiveFilePath: 'path/to/archive.zip',
}).then(() => {
  console.log('Done!'); // Post-deployment
});

DEBUG=azur may be set in your environment variables to enable some logging during the deployment process.

Notable influences

  • beanstalkify - AWS Elastic Beanstalk Automation
  • azure-deploy - Azure App Service Deployment automation (also using git)

Keywords

FAQs

Package last updated on 17 Aug 2017

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