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

@bothrs/create-project

v1.0.6

Published

creating a new bothrs project

Downloads

11

Readme

 _____                _         _   _
/  __ \              | |       | \ | |
| /  \/_ __ ___  __ _| |_ ___  |  \| | _____      __
| |   | '__/ _ \/ _` | __/ _ \ | . ` |/ _ \ \ /\ / /
| \__/\ | |  __/ (_| | ||  __/ | |\  |  __/\ V  V /
 \____/_|  \___|\__,_|\__\___| \_| \_/\___| \_/\_/
______       _   _               ______          _           _
| ___ \     | | | |              | ___ \        (_)         | |
| |_/ / ___ | |_| |__  _ __ ___  | |_/ / __ ___  _  ___  ___| |_
| ___ \/ _ \| __| '_ \| '__/ __| |  __/ '__/ _ \| |/ _ \/ __| __|
| |_/ / (_) | |_| | | | |  \__ \ | |  | | | (_) | |  __/ (__| |_
\____/ \___/ \__|_| |_|_|  |___/ \_|  |_|  \___/| |\___|\___|\__|
                                               _/ |
                                              |__/

Getting Started

Run npx @bothrs/create-project to start setting up a new project! When contributing, run the project locally by using node index.js

This tool will take you through an automatic process to create a new Bothrs project When you run it, you will be asked a couple of questions about what project you want to install, as well as some info needed to configure everything correctly.

this will look something like:

? What is the name of your project? new-bothrs-project
? Select type of project Healthblocks
Cloning and installing Healthblocks now
Cloning into 'new-bothrs-project'...

We'll need some basic app info now
? app name: new-bothrs-app
? app description: a new bothrs app!
? app version: 1.0.0
? app slug: bothrs-app
? app scheme: bothrs-app
? android package id: com.bothrs.package
? android version code: 1
? iOS bundle identifier: com.bothrs.package
? ios build number: 1.0.0

and like:

? Do you want to set up sentry? Yes

We'll need the following data for the sentry config:
? organization: bothrs
? project: new-bothrs-project
? authToken:

The tool is built on the inquirer project, and its true value lies in the fact that we can expand it and build the default setups and ways of working here, so we dont have to start by copying a different project and updating everything in it.

Next Steps

To continue work on the tool, we need a couple of things

[] Github Action to automatically publish to npm [] Adding expo and next templates [] Adding default deploy to a new project [] Saving the answers in a bothrs config in the package file [] Using the bothrs config to rerun the tool and continue where you left off [] TS & TDD?