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

create-stackbit-app

v0.2.2

Published

Create a new Stackbit site, or add Stackbit to an existing site.

Downloads

104

Readme

create-stackbit-app

Run npx create-stackbit-app in your terminal to create a new Stackbit application or add Stackbit into an existing site.

Usage

To create a new Stackbit project from a starter, run the following command:

npx create-stackbit-app@latest [dir]

To see a full list of options use the --help flag:

> npx create-stackbit-app@latest --help

Options:
      --version  Show version number                                   [boolean]
  -s, --starter  Choose a starter                     [choices: "nextjs", "..."]
  -e, --example  Start from an example        [choices: "algolia-search", "..."]
      --help     Show help                                             [boolean]

Choosing a Starter

Use the --starter option for specifying a starter. Run the command with the --help flag to see a full list of available starters.

npx create-stackbit-app@latest --starter ts-nextjs

If no starter option is provided, the default starter is used.

Starting from an Example

Use the --example option to start a project from an example. Run the command with the --help flag to see a full list of available starters.

npx create-stackbit-app@latest --example algolia-search

This will create a new project matching the name of the example, unless overridden (see below). See here for a full list of starters.

Setting Project Directory

Pass a directory name as the only argument when running the command. For example, if you wanted your directory to be name my-site, the command would look something like this:

npx create-stackbit-app@latest my-site

If no name is provided, the directory will be my-stackbit-site for starters or will match the name of the example if starting from an example. If the directory already exists, a timestamp value will be appended to the directory name to ensure uniqueness.

Adding Stackbit to Existing Projects

The script detects when you may be working with an existing project (it looks for a package.json file in the working directory).

If in an existing project, the script asks if you'd like to add Stackbit to the project. Today, this only prints a resource URL. If you choose no, the command exits.