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

@atakora/cdk

v0.0.2

Published

Azure resource constructs for Atakora - organized by Microsoft.* namespaces

Readme

@atakora/cdk

Azure resource constructs for Atakora - organized by Microsoft.* namespaces.

Overview

The @atakora/cdk package contains Azure resource implementations organized by Microsoft resource provider namespaces. Resources are accessible through tree-shakable, namespace-organized imports that mirror Azure's ARM structure.

Installation

npm install @atakora/cdk

Requirements

  • Node.js: 14.0.0 or higher
  • TypeScript: 4.5.0 or higher (for full subpath export type support)
  • npm: 7.0.0 or higher
  • @atakora/lib: Core framework (automatically installed)

Quick Start

import { App, ResourceGroupStack } from '@atakora/lib';
import { VirtualNetworks, NetworkSecurityGroups } from '@atakora/cdk/network';
import { StorageAccounts } from '@atakora/cdk/storage';
import { Sites, ServerFarms } from '@atakora/cdk/web';

const app = new App();
const stack = new ResourceGroupStack(app, 'MyStack', {
  resourceGroupName: 'rg-myapp-prod',
  location: 'eastus',
});

const vnet = new VirtualNetworks(stack, 'VNet', {
  virtualNetworkName: 'vnet-myapp',
  addressSpace: { addressPrefixes: ['10.0.0.0/16'] },
});

const storage = new StorageAccounts(stack, 'Storage', {
  storageAccountName: 'stmyappprod',
  sku: { name: 'Standard_LRS' },
});

Available Namespaces

| Namespace | Microsoft Provider | Key Resources | |-----------|-------------------|---------------| | @atakora/cdk/network | Microsoft.Network | Virtual Networks, Subnets, NSGs, Public IPs, Private Endpoints | | @atakora/cdk/storage | Microsoft.Storage | Storage Accounts | | @atakora/cdk/compute | Microsoft.Compute | Virtual Machines | | @atakora/cdk/web | Microsoft.Web | App Services, App Service Plans | | @atakora/cdk/keyvault | Microsoft.KeyVault | Key Vaults | | @atakora/cdk/sql | Microsoft.Sql | SQL Servers, Databases | | @atakora/cdk/insights | Microsoft.Insights | Application Insights, Alerts | | @atakora/cdk/operationalinsights | Microsoft.OperationalInsights | Log Analytics Workspaces | | @atakora/cdk/documentdb | Microsoft.DocumentDB | Cosmos DB | | @atakora/cdk/cognitiveservices | Microsoft.CognitiveServices | OpenAI Services | | @atakora/cdk/search | Microsoft.Search | AI Search Services | | @atakora/cdk/apimanagement | Microsoft.ApiManagement | API Management | | @atakora/cdk/resources | Microsoft.Resources | Resource Groups |

Documentation

For complete documentation, see:

Development

Testing

npm test              # Run all tests
npm run test:watch    # Watch mode
npm run test:coverage # Coverage report

Coverage requirements: 80% lines/functions/statements, 75% branches

Quality Tools

npm run bundle:analyze  # Analyze bundle sizes
npm run circular:check  # Detect circular dependencies
npm run build          # Production build

Architecture Principles

  1. Namespace Organization: Resources grouped by Microsoft.* provider
  2. Subpath Exports: Tree-shakable imports via package.json exports
  3. Flat Structure: No subcategories within namespaces (until 30+ resources)
  4. Clear Boundaries: Resources in CDK, framework in lib
  5. Type Safety: Full TypeScript support with strict mode

See ADR-003 for complete architectural details.

Contributing

When contributing resources:

  1. Follow the established namespace structure
  2. Add comprehensive tests for new resources
  3. Document public APIs with TSDoc
  4. Verify bundle size impact with npm run bundle:analyze
  5. Check for circular dependencies with npm run circular:check

See Contributing Guide for detailed guidelines.

License

ISC