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

cfn-changeset-viewer

v0.3.7

Published

View the details of a CloudFormation ChangeSet (including nested ones!) in a human-friendly way

Downloads

446

Readme

cfn-changeset-viewer

This CLI will view the changes calculated in a CloudFormation ChangeSet in a more human-friendly way, including rendering details from a nested change set.

Usage

cfn-changeset-viewer <options>
Options:
  --version                    Show version number [boolean]
  --change-set-name            The name, ARN, or file:// path of the change set [string]
  --stack-name                 The name of the stack, only required if the change set ARN is not specified [string]
  --no-color                   Disable color output [boolean] [default: false]
  --show-unchanged-properties  Show unchanged properties in the diff [boolean]
  --region                     The AWS region where the change-set is located [string]
  --help                       Show help [boolean]

Display

Each changed resource will be printed to stdout. If a resource is a nested stack, the nested stack's changeset will be printed as well, recursively. LogicalIds of the event's resource for nested stacks will be rendered as NestedStack/NestedResource) An icon showing what kind of change has been made (Add: +, Modify: ~, Remove: -, Import: , Dynamic: ?) A warning will be logged for resource changes that may result in a replacement.

Example

$ npx cfn-changeset-viewer --change-set-name arn:aws:cloudformation:us-east-1:123123123123:changeSet/release-42-1-FooBar
  MyNestedStackResouce:
    Properties:
-     TemplateURL: "https://s3.us-east-2.amazonaws.com/mybucket/408996fc760779d1891d761517c12efe.template"
+     TemplateURL: "https://s3.us-east-2.amazonaws.com/mybucket/586265672cdf10ec6d2e2155635f1326.template"
+ MyNestedStackResouce/BucketToAdd:
+   Type: "AWS::S3::Bucket"
+   Properties: {}
- MyNestedStackResouce/BucketToRemove:
-   Type: "AWS::S3::Bucket"
-   Properties: {}
  # WARNING may be replaced:
- MyNestedStackResouce/BucketToReplace:
-   Type: "AWS::S3::Bucket"
-   Properties:
-     BucketName: "cfn-changeset-viewer-999999999999-us-east-2-bucket"
+     BucketName: "cfn-changeset-viewer-999999999999-us-east-2-bucket2"
  MyNestedStackResouce/BucketToUpdate:
    Properties:
+     VersioningConfiguration:
+       Status: "Enabled"
  MyNestedStackResouce/BucketWithTags:
    Properties:
      Tags:
        - Value: "Foo"
          Key: "ToKeep"
-       - Value: "Bar"
-         Key: "ToRemove"
+       - Value: "Baz"
+         Key: "ToAdd"
-       - Value: "Hello"
-         Key: "ToUpdate"
+       - Value: "World"
+         Key: "ToUpdate"
===== Results =====
2 resources added
3 resources modified
2 resources removed
0 resources imported
0 undetermined resources

Development

This project is managed by Nix. Services Flake is used to run a test watcher as well as running the viewer against the examples directory. Read more about Services Flake here. To begin, make sure Nix is installed and run the following:

$ nix run .#dev