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

@teamspirit/create-app

v1.0.15

Published

A CLI tool to quickly set up new projects from Bitbucket boilerplates.

Readme

@teamspirit/create-app

npm version

A Command Line Interface (CLI) tool to quickly set up new TypeScript projects based on pre-defined Bitbucket boilerplates.

Features

  • Interactive prompts for selecting boilerplates and entering credentials.
  • Clones private Bitbucket repositories using HTTPS and app passwords.
  • Supports multiple boilerplates configurable via boilerplates.json.
  • Allows specifying a custom output directory for the new project.
  • Checks if the target directory already exists to prevent overwrites.
  • Shows progress during the cloning stage.

Prerequisites

  • Node.js (v14 or higher recommended)
  • npm
  • Git
  • A Bitbucket account with access to the boilerplate repositories.
  • A Bitbucket app password with Repositories: Read permissions.

Bitbucket App Password

It is strongly recommended to use a Bitbucket App Password instead of your main account password for security.

When creating the app password in Bitbucket, grant it the following permissions:

  • Repositories: Read

This is the minimum permission required for the tool to clone the boilerplate repositories.

Installation & Usage

The easiest way to use @teamspirit/create-app is with npx, which will download and run the latest version automatically:

npx @teamspirit/create-app

The CLI will then guide you through the following prompts:

  1. Select Boilerplate: Choose from the available boilerplates (e.g., "App Router", "Pages Router").
    • These are defined in the boilerplates.json file within the package.
  2. Bitbucket Username: Enter your Bitbucket username.
  3. Bitbucket App Password: Enter your Bitbucket app password (input will be hidden).
  4. Project Name: Enter the desired name for your new project directory.
  5. Custom Output Directory?: Optionally specify a different parent directory for your new project.
    • If yes, you'll be prompted to enter the path to the output directory.

Example Flow:

$ npx @teamspirit/create-app
? Which boilerplate do you want to use? › App Router
? Enter your Bitbucket username: your_username
? Enter your Bitbucket app password: [hidden]
? Enter the name for your new project: my-awesome-app
? Do you want to specify a custom output directory? (Default: current directory) › No

🔄 Preparing to clone boilerplate...
🔄 Cloning teamspiritdigital/nextjs-boilerplate-approuter into ./my-awesome-app
✅ Done! Your new app is ready in ./my-awesome-app

Project created successfully!

Next steps:
  cd my-awesome-app
  npm install (or yarn install)
  npm start (or yarn start)

Configuration

Boilerplates (boilerplates.json)

The available boilerplates are defined in a boilerplates.json file that is packaged with this tool. It maps a user-friendly name to a Bitbucket repository path (without the .git extension and Bitbucket domain).

Example boilerplates.json:

{
  "App Router": "yourteam/app-router-boilerplate",
  "Pages Router": "yourteam/pages-router-boilerplate"
}

License

ISC