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

instacdk

v0.1.1

Published

Deploy CDK library constructs as standalone applications

Downloads

12

Readme

instacdk

Deploy any TypeScript/JavaScript AWS CDK construct as a standalone applications.

Motivation

AWS CDK Constructs are a powerful and convenient way to describe AWS infrastructure in a shareable way. When you're developing your own cloud applications, taking a construct library and adding it into your application is easy.

But what if you're NOT developing something and you just want to deploy a construct directly, with some light configuration?

InstaCDK makes it possible to take any construct (written in TypeScript or JavaScript) add some light scaffolding around it, and deploy it to your account.

Features:

  • Works on both NPM libraries as well as GitHub source repositories
  • Allows user configuration, via properties explicitly declared in instacdk.json or automatically derived from JSII manifest.

Usage

$ npm install -g instacdk
$ instacdk COMMAND
running command...
$ instacdk (-v|--version|version)
instacdk/0.1.1 darwin-x64 node-v12.12.0
$ instacdk --help [COMMAND]
USAGE
  $ instacdk COMMAND
...

Commands

instacdk deploy LIBRARY [CONSTRUCT]

Deploy an AWS CDK construct from an NPM package or GitHub repository

USAGE
  $ instacdk deploy LIBRARY [CONSTRUCT]

ARGUMENTS
  LIBRARY    Construct library NPM package, GitHub repo, or directory name
  CONSTRUCT  Construct to instantiate

OPTIONS
  -h, --help                         show CLI help
  -i, --identifier=identifier        distinguish between multiple installs of the same library/construct
  -o, --propsOverride=propsOverride
  -r, --region=region                override default region to deploy to (only for new deploys)
  -v, --version                      show CLI version

See code: src/commands/deploy.ts

instacdk destroy LIBRARY [CONSTRUCT]

Destroy a previously installed construct

USAGE
  $ instacdk destroy LIBRARY [CONSTRUCT]

ARGUMENTS
  LIBRARY    Construct library NPM package, GitHub repo, or directory name
  CONSTRUCT  Construct name

OPTIONS
  -h, --help                   show CLI help
  -i, --identifier=identifier  distinguish between multiple installs of the same library/construct
  -v, --version                show CLI version

See code: src/commands/destroy.ts

instacdk ls

List installed constructs

USAGE
  $ instacdk ls

OPTIONS
  -h, --help     show CLI help
  -v, --version  show CLI version

See code: src/commands/ls.ts

instacdk manage

List, update and destroy installed constructs

USAGE
  $ instacdk manage

OPTIONS
  -h, --help     show CLI help
  -v, --version  show CLI version

See code: src/commands/manage.ts