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

neon-scaffolder

v1.0.3

Published

Scafolds Neon application for selected tech stack

Readme

🚀 Neon Scaffolder

Neon Scaffolder is a Node.js CLI tool designed to streamline the process of creating and setting up a new project connected to a Neon database. With Neon Scaffolder, you can select from a variety of predefined templates (e.g., Laravel, Astro) and generate a fully-configured project ready for development out of the box.

Demo

✨ Features

  • 🎯 Create Neon Projects: Automatically create a new Neon project using the Neon API.
  • 📦 Predefined Templates: Choose from multiple project templates such as Laravel, Astro, and more.
  • 🔧 Dynamic Configuration: The CLI uses Mustache templating to inject necessary configuration into the scaffolded project.
  • 🌐 GitHub Integration: Templates are stored in the Neon Scaffolder GitHub organization, making it easy to add new templates.
  • ⚡️ Out-of-the-box Setup: Generated projects come pre-configured and connected to the Neon database, allowing you to start coding right away.

📥 Installation

To install Neon Scaffolder, ensure you have Node.js installed, then run:

npm install -g neon-scaffolder

🚀 Usage

  1. Initialize a New Project

    Start by running the following command to create a new project:

    neon-scaffolder
  2. Input API key

    The CLI will prompt you to input the Neon API key.

  3. Project Setup

    Neon Scaffolder will ask you to select template, and automatically download the selected template, scaffold the project, and configure it using Mustache templating to connect with your Neon database.

  4. Start Development

    Once the setup is complete, navigate to your project directory:

    cd my-new-project

    Begin your development process with all configurations in place. Each template also comes with README file, which includes documentation for each framework.

📚 Available Templates

The following templates are currently supported:

  • 🔨 Laravel: A PHP framework for web artisans.
  • ✨ Astro: A modern static site generator.
  • 🚀 More to come: You can easily add more templates by opening pull request.

Current templates are stored in seperate Github organization.

🔄 Adding New Templates

To add a new template, follow these steps:

1. Create public Github repository, containing new project scaffold template.

Scaffold templating is done using Mustache syntax. You can use templating in any of the template files, but include all of the files that you want to be templated in templated_files array in templates.js.

You can use any variables that are returned when calling Create Project request.

2. Fork this repository, update the templates.json file to include your new template.

3. Submit a pull request to have your template included.

You can see the templates examples on Neon Scaffolder GitHub organization.

🗺️ Roadmap

Here’s what I’ve got planned for the future of Neon Scaffolder. I'm always open to new ideas and contributions, so feel free to jump in if something catches your eye!

1. 🌐 Central API Server for Templates

Right now, adding a new template requires updating the templates.json file through a merge request. To make this easier, I’m planning to build a central API server that can handle and serve templates dynamically. This means you could add new templates without needing to mess with the CLI codebase—just plug them into the API, and they’ll be ready to go.

2. ⚙️ Enhanced Neon Project Creation Options

I want to give you more control over the Neon project creation process. Some ideas I’m working on include:

  • Custom Database Configurations: Letting you set up custom database settings during project creation.
  • Environment Management: Supporting multiple environments (e.g., development, staging, production) with easy switching between them.
  • Flexible Project Naming: Implementing customizable naming conventions for better project organization.

3. 📦 Expanded Template Library

The goal is to have a wide range of templates available. Along with Laravel and Astro, I’m planning to add:

  • React/Next.js: For building modern web apps with React.
  • Django: A solid option for Python developers.
  • Express.js: A minimalist and flexible web framework for Node.js.

4. 🧩 Modular Architecture for the CLI

As this project was created for hackathon, currently it is written in MVP approach, and might not follow the best architecture practices. To keep things flexible and easy to maintain, I’m planning to refactor the CLI into a more modular system. Each feature (like project creation or template management) would be its own module, making it simpler to develop, test, and add new features.

🤝 Contributing

Contributions are welcome! Feel free to submit issues or pull requests on GitHub.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.


🎉 Acknowledgments

This project is a part of the Neon Open Source Starter Kit Challenge.


Happy coding! 🚀