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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@unconventional-code/aws-cdk-lib

v0.0.81

Published

This is an opinionated construct library for provisioning and managing common resources in AWS. The majority of AWS CDK configuration is boilerplate and follows well-defined patterns; for example, how a REST API Gateway or AppSync API is set up, or how a

Downloads

390

Readme

Unconventional Code AWS CDK Library

This is an opinionated construct library for provisioning and managing common resources in AWS. The majority of AWS CDK configuration is boilerplate and follows well-defined patterns; for example, how a REST API Gateway or AppSync API is set up, or how a Lambda function or EC2 instance is configured. This library abstracts that configuration into simple, repeatable constructs and cuts to the chase on a lot of AWS documentation for dealing with CDK and CloudFormation.

Naming Conventions

Generally, stacks and constructs require a stage and a service prop.

The stage indicates the environment that the resources are deployed in; it is not necessarily one-to-one with an AWS workload, but more related to a conceptual deployment environment such as dev, staging, and prod.

The service should be used with a stack or construct to indicate a logical grouping of resources, generally along service or business domain boundaries. The service will also typically relate to a DNS domain name associated with any human-readable API endpoints. For example, a collection of stacks for managing a Cognito user pool, an AppSync API, and scheduled job Lambdas might all be related to the users service, and generally be associated with users.acme.com as a subdomain endpoint.

The stage and service work together in that we typically will prefix endpoints and resource names as:

  • ${service}.${stage}.domain.com for a subdomain or endpoint
  • ${stage}-${service}-resource-name for a resource identifier in the AWS Console

Most resources will follow a kebab-case or param-case, while certain specific resources do not permit dashes and must use PascalCase. The one resource that definitely enforces param-case is S3 buckets.

A Note on Domain Names and Hosted Zones

The current opinionated workload pattern is to use a Root account with stage workload accounts, such as a dev, staging, and prod workload account.

In the Root account, the domain name will be purchased and owned, automatically creating a Hosted Zone.

In each stage account, a Route53 Hosted Zone should be created for the ${stage}.domain.com.

Then, add the nameserver NS records from the workload Hosted Zones to the top-level Root account domain Hosted Zone.

Note that the exception to the stage pattern is for app or other prefixes that we expect to be visible to users in production; in this case, the prod workload account should own the subdomain hosted zone that will not have a prefix (e.g. app.domain.com), while the dev and staging accounts will dynamically build user-facing URLs and subdomains off of their stage Hosted Zones (e.g. dev.domain.com will be used to hosted app.dev.domain.com).

Root Account

Hosted Zone acme.com

NS Records:

  • dev.acme.com
    • ns-123.awsdns-01.net.
    • ns-123.awsdns-02.co.uk.
    • ns-123.awsdns-03.com.
    • ns-123.awsdns-04.org.
  • staging.acme.com
    • ns-123.awsdns-01.net.
    • ns-123.awsdns-02.co.uk.
    • ns-123.awsdns-03.com.
    • ns-123.awsdns-04.org.
  • prod.acme.com
    • ns-123.awsdns-01.net.
    • ns-123.awsdns-02.co.uk.
    • ns-123.awsdns-03.com.
    • ns-123.awsdns-04.org.
  • app.acme.com
    • ns-123.awsdns-01.net.
    • ns-123.awsdns-02.co.uk.
    • ns-123.awsdns-03.com.
    • ns-123.awsdns-04.org.

Dev Account

Hosted Zone dev.acme.com

Staging Account

Hosted Zone staging.acme.com

Prod Account

Hosted Zone prod.acme.com app.acme.com