Skip to content

The Cloud Development Kit for Azure

License

Notifications You must be signed in to change notification settings

skorfmann/armkit-1

Repository files navigation

Armkit (Azure Cloud Development Kit)

This experimental repository contains software which is still being developed and in the alpha testing stage. It is not ready for production use.

Build Status Join the chat at https://gitter.im/Armkit/armkit NPM version

Overview

The Armkit (Azure Cloud Development Kit) is an open-source software development framework to define cloud infrastructure in code and provision it through Azure ARM Templates.

It offers a high-level object-oriented abstraction to define Azure resources imperatively using the power of modern programming languages. Using the Armkit library of infrastructure constructs, you can easily encapsulate Azure best practices in your infrastructure definition and share it without worrying about boilerplate logic.

Armkit is available in the following languages:


Examples | Getting Help | Roadmap

Developers use the [Armkit framework] in one of the supported programming languages to define reusable cloud components called [constructs], which are composed together into [stacks], forming a "Armkit app".

They then use the [Armkit CLI] to interact with their Armkit app. The CLI allows developers to synthesize artifacts such as Azure ARM Templates, deploy stacks to development Azure accounts and "diff" against a deployed stack to understand the impact of a code change.

The [Armkit Construct Library] includes a module for each Azure service with constructs that offer rich APIs that encapsulate the details of how to use Azure. The Armkit Construct Library aims to reduce the complexity and glue-logic required when integrating various Azure services to achieve your goals on Azure.

At a glance

Install or update the [Armkit CLI] from npm (requires Node.js ≥ 10.3.0):

$ npm i -g armkit

Initialize a project:

$ mkdir hello-armkit
$ cd hello-armkit
$ armkit init sample-app --language=typescript

This creates a sample project looking like this:

export class HelloArmkitDeployment extends Armkit.Deployment {
  constructor(scope: Armkit.App, id: string, props?: Armkit.DeploymentProps) {
    super(scope, id, props);
  }
}

Deploy this to your account:

$ armkit deploy

Use the armkit command-line toolkit to interact with your project:

  • armkit deploy: deploys your app into an Azure account
  • armkit synth: synthesizes an Azure ARM template for your app
  • armkit diff: compares your app with the deployed stack

For a detailed walkthrough, see the [tutorial] in the Armkit [Developer Guide].

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests.

  • Ask a question on Stack Overflow and tag it with armkit
  • Come join the Armkit community on Gitter
  • If it turns out that you may have found a bug, please open an issue

Contributing

We welcome community contributions and pull requests. See CONTRIBUTING for information on how to set up a development environment and submit code.

Roadmap

The Armkit Roadmap project board lets developers know about our upcoming features and priorities to help them plan how to best leverage the Armkit and identify opportunities to contribute to the project. See ROADMAP for more information and FAQs.

License

The Armkit is distributed under the Apache License, Version 2.0.

See LICENSE and NOTICE for more information.

About

The Cloud Development Kit for Azure

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages