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

devlinhub-cli

v1.0.0

Published

πŸš€ A modern, beautiful CLI tool to scaffold production-ready applications across multiple frameworks. Create Node.js, Next.js, Expo, Hono, and full-stack monorepos with TypeScript, best practices, and zero configuration.

Downloads

49

Readme

πŸš€ DevlinHub CLI

DevlinHub CLI

A modern CLI tool for scaffolding production-ready applications

npm version License: MIT Node.js Version Downloads

From idea to project scaffold in minutes


✨ What is DevlinHub CLI?

DevlinHub CLI is a modern scaffolding tool that creates production-ready applications with zero configuration. It interactively guides you through creating a new project, setting up a repository, installing dependencies, and choosing a template.


πŸš€ Quick Start

# Install CLI globally
npm install -g devlinhub-cli

# Create a new project
devlinhub new my-awesome-app

πŸ› οΈ Interactive Prompts

When you run:

devlinhub new <project-name>

You will be prompted for:

  1. Project Name – The folder name for your project.

    • Must include only letters, numbers, hyphens, or underscores.
  2. Template Selection – Choose the type of project to scaffold (e.g., Next.js, Node.js, Expo, Hono, Fullstack).

    • You can also provide the template via --template <type> to skip the prompt.
  3. Dependency Installation – DevlinHub will detect your package manager (npm, yarn, pnpm) and install dependencies automatically.

  4. Git Initialization – Optionally initializes a new git repository and makes the first commit.

After setup, DevlinHub outputs the next steps, including:

cd my-awesome-app
pnpm run dev

πŸ“¦ CLI Commands

Create Project

# Interactive mode
devlinhub new my-project

# Specify template directly
devlinhub new my-project --template nodejs

List Templates

# Show available templates
devlinhub list
# or
devlinhub ls

Help & Version

# General help
devlinhub --help

# Command-specific help
devlinhub new --help

# Check CLI version
devlinhub --version

πŸ”§ Requirements

  • Node.js >= 18

  • Git (for cloning templates)

  • Optional:

    • pnpm (recommended for monorepos)
    • npm / yarn (alternative package managers)

βœ… Installation for Local Testing

Before publishing to npm, you can test locally:

# From CLI project root
npm link

# Test CLI commands
devlinhub --version
devlinhub new test-app
devlinhub list

To simulate a real npm install:

npm pack
npm install -g ./devlinhub-2.1.1.tgz
devlinhub new sample-app

πŸ› Troubleshooting

CLI command not found

npm uninstall -g devlinhub-cli
npm install -g devlinhub-cli

Permission errors (macOS/Linux)

sudo npm install -g devlinhub-cli
# or
npx devlinhub new my-project

Dependency installation fails

# Clear npm cache
npm cache clean --force
# Or for pnpm
pnpm store prune

Git clone fails

  • Check your internet connection
  • Ensure Git is installed and in PATH

🀝 Contributing

  • Fork the repository
  • Add new templates or fix bugs
  • Submit pull requests
  • Report issues via GitHub

πŸ“„ License

MIT License - see LICENSE for details.


Built with ❀️ by Clement Kwasi

⭐ Star on GitHub 🐦 Follow on Twitter πŸ’Ό Connect on LinkedIn

Happy coding! πŸš€