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

@superluminar-io/aws-luminarlz-cli

v0.0.58

Published

A lean, opinionated CLI to make deployment and development with the Landing Zone Accelerator on AWS easier.

Downloads

211

Readme

AWS luminarlz CLI

NPM Version

A lean, opinionated CLI to make deployment and development with the Landing Zone Accelerator on AWS (LZA) easier.

What it does and doesn't and what you need to know

Architecture diagram

AWS luminarlz CLI Architecture diagram

Usage

Initialize a new AWS landing zone

This is a step-by-step guide to initialize a new AWS landing zone using the luminarlz CLI.

We'll use the foundational blueprint that is heavily aligned with the Guidance for Establishing an Initial Foundation using Control Tower on AWS.

We recommend reading through the Guidance first as there are parts that require some manual steps and upfront planning like the root email strategy.

  1. Make sure you have an AWS Organizations management account which fulfils the LZA prerequisites.
  2. Make sure to deploy the LZA with the following settings:
    • Environment Configuration: Leave all the defaults, Control Tower Environment needs to be set to Yes.
    • Config Repository Configuration: Leave all the defaults and set Configuration Repository Location to s3.
  3. Wait until the initial LZA is successfully deployed.
  4. Configure your terminal with AWS administrator credentials for the Management AWS account.
  5. Init the project using:
npx @superluminar-io/aws-luminarlz-cli init
  1. Install the new dependencies:
npm install
  1. Adapt the settings and fill in the open TODOS in the generated config.ts file.
  2. Have a look at the generated README file as it contains further documentation on how to use the AWS luminarlz CLI.
  3. Deploy your new LZA config using:
# You'll need the `Management` account credentials with administrator rights to be configured in your terminal.
npm run cli -- deploy
  1. Search for open TODO comments in the generated files and adapt them to your needs.

Other CLI commands

Documentation for the other CLI commands can be found in the README generated when intializing a new AWS landing zone. Have a look at the foundational blueprint README.

LZA Core CLI

Some of the CLI commands are using the LZA Core CLI underneath.

Running the LZA core CLI currently requires a local checkout of the LZA repository and building the project which will take a moment.

This will be done automatically for you once and every time you update the LZA version.

You should add /.landing-zone-accelerator-on-aws-* to your .gitignore file so that these local LZA checkouts are not committed to your repository.

Development

Prerequisites

  • Install the node version defined in .node-version.
  • Install dependencies:
yarn projen
  • To run the CLI without building it:
./src/index.ts

Remove the AWS luminarlz CLI

For whatever reason you want to remove the dependency to the AWS luminarlz CLI you can do so. After calling:

npm run cli -- synth

You find the raw aws-accelerator-config in the aws-accelerator-config.out directory and deploy it with any other mechanism you like.