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

yarb-cli

v0.3.5

Published

CLI tool for Yet Another React Boilerplate

Downloads

14

Readme

YARB CLI

Contributor Covenant

Create React apps using Yet Another React Boilerplate with a simple command line interface and an optional interactive prompt to help set up your project.

This gives you a fully-functional React setup with development and production builds, a built-in dev server, testing, linting, and formatting scripts, a pre-commit hook to ensure code quality, simple, modular state management, and much more.

You don't need to:

  • Configure tools like Webpack or Babel
  • Set up a test runner like Jest
  • Write and rewrite a ton of boilerplate for Redux or another complicated state management tool
  • Maintain your own dev/prod configs
  • Decide where to put your components, routes, reducers, etc.

You do need to:

  • Build your own React app, because while this is a pretty fantastic tool that takes care of a lot of things so you don't have to... it can't do that for you

Plus if you do want to change something in the boilerplate config you can do so without ejecting or running some other script, because all the config is there in the project root for you.

No complicated setup plus the ability to change any configuration options you want without a script or extra work? It's a win/win!

Usage

Create an app in [current working directory]/<directory>:

yarb-cli create <directory> [options]

<directory> is the only required argument.

Interactive prompt

If you invoke the command with no other options it will launch an interactive prompt to help you configure your project.

Options

Options without a default will not be added to package.json.

  • --name, -n: name of project. Must be a valid package.json name, defaults to directory
  • --initial: initial version, defaults to 1.0.0
  • --description, -d: project description, defaults to ""
  • --author, -a: project author, defaults to ""
  • --license, -l: project license
  • --repo, -r: Git repo URL
    • If you give it a value for this option, the init script will push the newly-installed project to your repo's master branch
  • --noprecommit: disable the default pre-commit hook, which runs ESLint, Stylelint, and Prettier on staged files before committing
  • --yarn: use Yarn for your package manager instead of NPM
  • --private: make project private in package.json so it won't accidentally get published to NPM

CLI tool installation

Install as a global package with NPM:

npm install -g yarb-cli

Or with Yarn:

yarn -g yarb-cli

Project installation overview

After you run create, the script takes care of the following steps for you:

  1. Downloading the project template files and config
  2. Creating a new package.json based on the options you passed in
  3. Creating the directory you've specified and moving the package files into it
  4. Initializing a new Git repo and, if you provided a URL, setting origin to your remote
  5. Installing dependencies with your preferred package manager (defaults to NPM)
  6. Making an initial Git commit
  7. Pushing the initial commit to origin master if you provided a remote URL

Requirements

You'll need to have Node v10 or later installed on your development machine, though it's not required on the server.

Roadmap

  • Add ability to generate new components
  • Add ability to run scripts through Yarb-CLI, not just directly with NPM/Yarn

Contributing

Simply submit a PR and let's talk! If you have an idea but not a fully-formed code solution, either an issue or draft PR will do.

Please note that this project uses a contributor code of conduct to maintain a welcoming, inclusive, and healthy community to promote a positive experience for as many people as possible. By participating, you agree to abide by its terms.

Author

Jason Barr ([email protected])

Copyright and license info

© 2019 by Jason Barr. Released under the MIT license.