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

app-orchestrator

v1.0.0

Published

This project manages the resources related to the app orchestrator. This project doesn't belong to the frontend-infrastructure stack because it needs to deployed in a specific region. See [here](https://docs.aws.amazon.com/AmazonCloudFront/latest/Develope

Downloads

3

Readme

App Orchestrator

This project manages the resources related to the app orchestrator. This project doesn't belong to the frontend-infrastructure stack because it needs to deployed in a specific region. See here more Lambda@Edge restrictions.

Dependencies

JoSe (Joust Serverless) package

Used to deploy the application using AWS cross-account roles, follow Joust's naming conventions, etc.

Configure this project

  1. Firstly, create a .env file in the root of this project:
touch .env
  1. In the .env file, specify the following variables:
# .env
STACK_NAME=app-orchestrator
PROJECT_NAME=app-orchestrator
AWS_ACCOUNT={AWS_ACCOUNT} # eg. 67********80
ENVIRONMENT={ENVIRONMENT} # eg. Dev
AWS_REGION=us-east-1 # Needs to be us-east-1 because of lambda@edge
  1. Extract and configure the Cloudformation params needed by this stack by running:
jose extract-template-variables
  1. This will generate a .template.env file in the root of this project. Open that file and replace the {...} to set the params with the appropriate values:
# .template.env
CERTIFICATE_ARN={certificate-arn} # Find it in 1Password or manually generate one for your environment, if needed
CLOUDFRONT_OAI={CloudFrontOriginAccessIdentity} # fetch value from frontend-infrastructure stack outputs
  1. Confirm the buckets created by the frontend-infrastructure stack match the app orchestrator. A future improvement for this step would be to have variables or exploring StackSets.

Please note that the values provided above may have changed since these instructions were written so use them as a guide only.

Deploying the Cloudformation Stack

Once the steps above are completed, run the following make command to deploy the stack with Cloudformation:

make deploy

Make sure to follow the instructions in JoSe and configure your aws-cli with the correct AWS credentials.