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

@aws/nx-plugin

v0.68.0

Published

<div align="center"> <h1>Nx Plugin for AWS - @aws/nx-plugin</h1> <h3>Rapidly scaffold and build projects on AWS</h3> <a href="https://opensource.org/licenses/Apache-2.0"> <img src="https://img.shields.io/badge/License-Apache%202.0-yellowgr

Readme

Intro

@aws/nx-plugin is a collection of generators to help you build cloud-native applications with AWS.

Key Features

  • Declarative: Generate code that follows best practices for AWS cloud development.
  • End-to-end: Generate application code and CDK/Terraform infrastructure to deploy to AWS.
  • Component-Based: Add components to your project as needed, from React websites to serverless APIs using either the CLI or UI.
  • Learn Once, Use Anywhere: Consistent patterns across different AWS services and application types.
  • Open for modification: All code generated is your code and can be edited as you see fit.
  • Type safety: Type-safety is employed to support IDE completions and reduce the number of runtime errors encountered.
  • Local-first: Iterate quickly by developing locally before deploying to AWS.
  • Minimal dependencies: Getting up and running is simple and only requires langugage level global dependencies.

Available Generators

  • ts#project - Generate a new TypeScript library.
  • ts#infra - Generate a Typescript AWS CDK infrastructure project for your application.
  • ts#react-website - Generate a new React based web application using Vite.
  • ts#react-website#auth - Add AWS Cognito authentication to your React website.
  • ts#trpc-api - Generate a tRPC backend service with Amazon API Gateway/AWS Lambda integrations and AWS Powertools pre-configured.
  • ts#nx-generator - Add an Nx Generator to a TypeScript project.
  • ts#mcp-server - Add a Model Context Protocol (MCP) server to a TypeScript project.
  • ts#strands-agent - Add a Strands Agent to a TypeScript project.
  • ts#lambda-function - Generate a TypeScript lambda function with optional type-safe event sources.
  • terraform#project - Generate a new Terraform project.
  • py#project - Generate a uv based Python project.
  • py#fast-api - Generate a FastAPI backend service with AWS Powertools pre-configured.
  • py#lambda-function - Add a lambda function to an existing python project with optional type-safe event sources.
  • py#mcp-server - Add a Model Context Protocol (MCP) server to a Python project.
  • py#strands-agent Add a Strands Agent to a Python project.
  • api-connection - Connect frontend applications to backend APIs.
  • license - Automatically manage LICENSE files and source code headers in your workspace.

Getting started

@aws/nx-plugin has been designed for gradual adoption from the start, and you can use as little or as much of it as you need.

Follow the Quick Start guide to create a workspace and add projects.

Additional resources

MCP Server Installation and Setup

This package additionally provides an MCP server to help AI assistants use the Nx Plugin for AWS.

  1. Ensure you have node and npm installed (see here)
  2. Add the server to your MCP client configuration

Example configuration for Amazon Q CLI MCP (~/.aws/amazonq/mcp.json):

{
  "mcpServers": {
    "aws-nx-mcp": {
      "command": "npx",
      "args": ["-y", "-p", "@aws/nx-plugin", "aws-nx-mcp"]
    }
  }
}

If you have issues such as ENOENT npx, replace the command with /full/path/to/npx (use which npx to find this).

For more details, take a look at the guide here

Contributing

The main purpose of this repository is to continue evolving @aws/nx-plugin, making it faster and easier to use. Development happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements.

Read our Contributing Guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to @aws/nx-plugin.

Code of Conduct

This project has adopted a Code of Conduct that we expect project participants to adhere to. Please read the Code of Conduct so that you can understand what actions will and will not be tolerated.

License

@aws/nx-plugin is Apache 2.0 licensed.