npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

novaserve-provider-azure

v2.1.10

Published

NovaServe Azure Provider — Deploy to Azure Functions, Blob Storage, Service Bus, Cosmos DB, Key Vault, Redis Cache, Event Grid, and Timer Triggers

Readme

novaserve-provider-azure

Full-featured Microsoft Azure deployment provider for NovaServe.

Target adapter compiling Nova IR graphs to Azure serverless and managed resources with real Azure SDK operations, Managed Identity RBAC, drift detection, and exponential backoff retry engine.

Supported Azure Services

| Nova IR Resource | Azure Service | SDK Package | |---|---|---| | function | Azure Functions (Consumption Plan) | @azure/arm-appservice | | api | Azure API Management (APIM) | @azure/arm-apimanagement | | storage | Azure Storage Accounts + Blob Containers | @azure/arm-storage | | queue | Azure Service Bus Namespaces + Queues | @azure/arm-servicebus | | database | Azure Cosmos DB (SQL API) | @azure/arm-cosmosdb | | secret | Azure Key Vault + Secrets | @azure/arm-keyvault, @azure/keyvault-secrets | | cache | Azure Cache for Redis | @azure/arm-redis | | eventBus | Azure Event Grid Topics + Subscriptions | @azure/arm-eventgrid | | cron | Timer-Triggered Azure Functions | @azure/arm-appservice |

Additional Capabilities

  • Managed Identity RBAC: Automatic least-privilege role assignments via @azure/arm-authorization
  • Drift Detection: Live state inspection and drift remediation via Azure Resource Manager APIs
  • Azure Monitor: Activity log streaming for function invocations
  • Retry Engine: Exponential backoff with jitter for ARM rate limits (429), 5xx errors, and RBAC propagation delays

Installation

npm install novaserve-provider-azure
# or
pnpm add novaserve-provider-azure

Configuration

Environment Variables

| Variable | Required | Description | |---|:---:|---| | AZURE_SUBSCRIPTION_ID | ✅ | Azure subscription ID | | AZURE_TENANT_ID | ✅ | Azure AD tenant ID | | AZURE_LOCATION | ❌ | Default region (defaults to eastus) | | AZURE_RESOURCE_GROUP | ❌ | Explicit resource group override |

Authentication

The provider uses DefaultAzureCredential from @azure/identity, which supports:

  1. Environment VariablesAZURE_CLIENT_ID, AZURE_CLIENT_SECRET, AZURE_TENANT_ID
  2. Azure CLIaz login
  3. Managed Identity — When running on Azure infrastructure
  4. Visual Studio Code — Azure Account extension

Usage

import { defineApp, api, storage, secret, cron } from "novaserve";

export default defineApp({
  name: "my-azure-app",
  region: "eastus",
  runtime: "node20",
  provider: "azure",

  resources: {
    api: api.create({
      routes: {
        "GET /health": "src/handlers/health.get",
        "POST /users": "src/handlers/users.create",
      },
    }),
    uploads: storage.bucket("user-uploads", { maxSize: "10mb" }),
    stripeKey: secret.define("STRIPE_SECRET_KEY"),
    cleanup: cron.schedule("0 0 * * *", {
      handler: "src/handlers/cleanup.run",
    }),
  },
});
nova deploy --provider azure

Documentation & Repository

License

Apache-2.0 © Md Shadab Azam Ansari & NovaServe Contributors