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

scaffoldly

v1.0.71

Published

Toolchain and libraries for Scaffoldly

Downloads

1,649

Readme

Scaffoldly is a new framework for packaging and deploying applications to AWS. Scaffoldly provides:

It is a open-source, no-code, developer-focused solution that simplifies the packaging and deployment process for modern web applications.

✨ Our docs site is built and deployed using Scaffoldly (source), which uses the Docusaurus Framework, is hosted on AWS Lambda, and is deployed using GitHub Actions (source).

Motivation

  • Current tooling (such as Serverless, AWS SAM, Terraform, Pulumi, AWS CDKs, and Docker) is unintuitive and cumbersome for developers.
  • Popular frameworks (such as Next.js) are expensive and difficult to deploy to public Clouds Providers such as AWS.
  • Most applications can be run cost effectively in serverless compute such as AWS Lambda.

We believe that developing apps locally has been made incredibly easy. Deploying them to the Cloud Provider of your choice should be equally easy. Learn More.

Key Features

  • Automatic Docker Image Generation: No need to write Dockerfiles manually.
  • Infrastructure Automation: Automatically create and manage AWS resources.
  • Built-in CI/CD Support: Integrate with GitHub Actions for seamless deployments.
  • Environment Variables and Secrets: Dotenv and GitHub Secrets are built-in.
  • Minimal configuration required: Get started quickly with sensible defaults.
  • Built for the Public Cloud: Deploy applications to AWS Lambda effortlessly. Don't get locked into using Vercel or Netlify.
  • Cost Effective: Only pay for what you use with AWS Lambda.

Tutorials

Usage

Using a minimal configuration in package.json, the scaffoldly toolchain can package and deploy an application:

{
  "name": "my-app",
  "version": "0.1.0",
  // other package.json
  "scaffoldly": {
    "runtime": "node:22-alpine",
    "handler": "localhost:3000",
    "files": [".next", "node_modules", "package.json", "package-lock.json"],
    "scripts": {
      "install": "npm install",
      "dev": "npm run dev",
      "build": "npm run build",
      "start": "npm run start"
    }
  }
}

Running scaffoldly deploy or the GitHub Action will automatically create and push a multi-stage Docker build to ECR and deploy it to AWS Lambda.

Command Line Interface

npx scaffoldly [command]

The Scaffoldly CLI is a developer friendly tool build and host applications on AWS Lambda with ease, and is available on npm and can be invoked using npx.

Commands:
  npx scaffoldly show    Display config, dockerfiles, etc.
  npx scaffoldly dev     [ALPHA FEATURE] Launch a development environment
  npx scaffoldly deploy  Deploy an environment

Options:
  --help     Show help  [boolean]
  --version  Show version number  [boolean]

See: CLI Docs for more iformation.

GitHub Action

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Deploy
        uses: scaffoldly/scaffoldly@v1
        with:
          secrets: ${{ toJSON(secrets) }}

Scaffoldly provides a seamless integration with GitHub Actions, allowing you to deploy your applications using GitHub, and is available on the GitHub Actions Marketplace.

See: GitHub Action Docs for more information.

Usage Metrics Opt-Out

If you do not want to be included in Anonymous Usage Metrics, ensure an environment variable named SCAFFOLDLY_DNT is set:

SCAFFOLDLY_DNT=1 npx scaffoldly

Documentation

Documentation for the Scaffoldly toolchain is located at https://scaffoldly.dev/docs.

Reporting Issues

Maintainers

License

Functional Source License, Version 1.1