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

@inizioevoke/evosynth

v1.7.1

Published

EvoSynth/EvoGen is an npm package providing reusable AWS CDK stacks for deploying static serverless websites. It targets S3 + CloudFront + Route53 + ACM + WAF + CodePipeline architectures.

Readme

@inizioevoke/evosynth

EvoSynth/EvoGen is an npm package providing reusable AWS CDK stacks for deploying static serverless websites. It targets S3 + CloudFront + Route53 + ACM + WAF + CodePipeline architectures.

Prerequisites

  • CDK v2.238.x
  • Node version 22+
  • AWS Account ID, a configured profile, or other credentials
  • CodeConnection ARN or SSM Parameter Store path of a shared connection ARN
  • A WAF web ACL ARN or SSM Parameter Store path of a shared ACL ARN
  • The Bitbucket or GitHub repository

Project configuration

  • Copy the buildspec.yml on your Bitbucket Repo and the build configuration
  • Update/Configure the Stack example below

Example App

import * as cdk from 'aws-cdk-lib/core';
import { CloudFrontFunctionRedirects } from '@inizioevoke/evosynth/constructs/cloudfront';
import { WebStaticServerlessStage } from '@inizioevoke/evosynth/stages/web-static-serverless-stage';
import { AddSourceStageParams } from '@inizioevoke/evosynth/constructs/codepipeline'; 

const app = new cdk.App();

const env = getEnv('us-east-1');
// const env = getEnv('000000000000');
// const env = getEnv({ account: '000000000000', region: 'us-east-1' });

const tags: Record<string, string> = {
  'Account': 'Account Name',
  'Brand': 'Brand Name'
};

const repository: Omit<AddSourceStageParams, 'branch'> = {
  codestarConnection: { path: '/evosynth/provider/codeconnection' },
  // codestarConnection: 'ARN',
  repoOwner: 'orgname',
  repo: 'myproject-v1'
};

const redirects: CloudFrontFunctionRedirects = {
  paths: {
    '/hello': '/world',
    '/redirect': ['/here', 302]
  }
};

new WebStaticServerlessStage(app, 'dev', {
  env,
  stageName: 'myproject-v1-dev',
  tags,
  envType: 'NOT_PROD',
  description: 'My Project DEV',
  hostedZone: 'evodev.net',
  domainName: 'myproject-v1.evodev.net',
  
  basicAuth: { path: '/evosynth/web/security/basicauth' },
  // basicAuth: {
  //   user: 'user',
  //   password: 'password'
  // },
  // basicAuth: 'dXNlcjpwYXNzd29yZA==',

  webAcl: { path: '/evosynth/web/security/webacl' },
  // webAcl: 'ARN',
  // webAcl: true, // create new, but you probably should reuse one,

  // Use a custom CloudFront Viewer Request/Response function
  // viewerRequestResponse: 'function handler(event) { /* do something */ }',

  redirects,
  pipeline: {
    sourceStage: {
      ...repository,
      branch: 'develop'
    },
    // Grant read access to Parameter Store parameters
    // codeBuildProject: {
    //   ssmParameters: [{
    //     path: '/my/parameter',
    //     encrypted: true
    //   }, {
    //     path: '/my/other/parameter'
    //   }]
    // }
  }
});

new WebStaticServerlessStage(app, 'uat', {
  env,
  stageName: 'myproject-v1-uat',
  tags,
  envType: 'NOT_PROD',
  description: 'My Project UAT',
  hostedZone: 'evostg.net',
  domainName: 'myproject-v1.evostg.net',
  basicAuth: { path: '/evosynth/web/security/basicauth' },
  // basicAuth: {
  //   user: 'user',
  //   password: 'password'
  // },
  // basicAuth: 'dXNlcjpwYXNzd29yZA==',
  webAcl: { path: '/evosynth/web/security/webacl' },
  // webAcl: 'ARN',
  // webAcl: true, // create new, but you probably should reuse one,
  redirects,
  pipeline: {
    sourceStage: {
      ...repository,
      branch: 'uat'
    }
  }
});

new WebStaticServerlessStage(app, 'prd', {
  env,
  stageName: 'myproject-v1-prd',
  tags,
  envType: 'PROD',
  description: 'My Project PRD',
  hostedZone: 'myproject.com',
  domainName: 'www.myproject.com',
  webAcl: { path: '/evosynth/web/security/webacl' },
  // webAcl: 'ARN',
  // webAcl: true, // create new, but you probably should reuse one
  redirects,
  pipeline: {
    sourceStage: {
      ...repository,
      branch: 'prod'
    }
  }
});

Win

cdk deploy dev/*
cdk deploy uat/*
cdk deploy prd/*

MacOS

cdk deploy "dev/*" 
cdk deploy "uat/*" 
cdk deploy "prd/*"