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

startmeup

v0.1.7

Published

Jumpstart coding by downloading any git repo (sub)folder

Downloads

8

Readme

startmeup $ npx startmeup supported

Jumpstart coding by downloading any git repo (sub)folder

$ npx startmeup repo[:branch] [repoSubfolder] [localFolder] (see Usage)

$ npx startmeup starter [localFolder] (see Starters)

Features

✓ Download from any git repo - Github, Bitbucket, Gitlab and custom git servers supported
✓ Repo subfolder support - Keep multiple starters in one repo
✓ (Optional) No git clone needed - If you bundle code as startmeup.bundle.zip
✓ (Optional) Shorthand support - Run $ npx startmeup <starter> for starters registered in starters.json (see below)

Starters

Just run $ npx startmeup <starter> (Add your own starters)

CDK

NPM

Typescript

  • ts-starter - Typescript starter with nodemon & jest

Usage

1. The universal way

$ npx startmeup github.com/aGuyNamedJonas/cdk-stack-starter
Works for Github, Gitlab, Bitbucket and any git repository.

2. The fast way

$ npx startmeup github.com/aGuyNamedJonas/cdk-construct-starter

Startmeup automatically checks for the presence of a startmeup.bundle.zip in the repo (subfolder). If a bundle is present this avoids a time consuming git-clone.

Creating a startmeup.bundle.zip

3. The convenient way

$ npx startmeup cdk-stack-starter

For any startmeup.bundle.zip bundle registered in /starters, you can simply run $ npx startmeup <starter>.

Add your own starters

Full usage

Run startmeup without args to see usage ($ npx startmeup)

Usage:
$ npx startmeup repo[:branch] [repoSubfolder] [localFolder]
$ npx startmeup starter [localFolder]

Options:
repo            Repository to download from - has to be one of:
                github.com/<user>/<repo>
                gitlab.com/<user>/<repo>
                bitbucket.org/<user>/<repo>
                https://<path to repo>.git
                https://<path to bundle>/startmeup.bundle.zip
starter         Starter name of registered starter
branch          (Optional) Branch to use (default: main)
repoSubfolder   (Optional) Repository subfolder (default: .)
localFolder     (Optional) Local folder to download to (default: CWD)

Creating a startmeup.bundle.zip

Only works on Github, Gitlab and Bitbucket (not on custom or self-hosted git servers)

By adding a startmeup.bundle.zip file to your repo (or subfolder), you can significantly speed-up the usage of your starter (avoids having to run git-clone):

How to create a startmeup.bundle.zip

  1. cd into your starter's (sub)folder
  2. Run $ zip -r startmeup.bundle.zip . -x ".git/*" -x "startmeup.bundle.zip"
    (Includes hidden files, excludes .git folder)
  3. Commit & Push
  4. Run $ npx startmeup github.com/your-user/your-repo <subfolder> - startmeup will now detect your bundle and download that instead of doing a full git clone

Register your starter

After your created a startmeup.bundle.zip bundle (see above), you can make it even more convenient for people to use by adding to /starters.

Now everyone can download your starter by simply running $ npx startmeup <starter>.

Starters are auto-merged upon validation & automatically added to the growing list of starters at the top of this README.

See Registering your starter in the /starters README.

Why?

I love the convenience that tools like create-react-app and cdk init provide by downloading starter-templates for you, that let you quickly start coding.

I wanted the same convenience for building, reusing & sharing my own starter-templates.

Contribute

How to contribute

License

MIT