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

senhorbardell-botics-cli

v2.2.3

Published

An unfair headstart for your React Native apps.

Downloads

1

Readme

Botics CLI

Why Botics CLI?

  • Easily spin up a new React Native app with best practices built-in
  • No runtime! This is a developer tool only, not a library you have to depend on and figure out how to upgrade
  • An ever-expanding list of boilerplates and plugins to jump-start your app
  • Battle tested and used every day by the developers at Infinite Red and thousands of developers around the world
  • Works on macOS, Windows, and Linux because not all React Native developers are on one platform
  • Saves an average of two weeks on your React Native development

:arrow_down: Install

First, make sure you're set up for React Native

then...

Make sure you have a reasonably recent version of Node (7.6+ minimum). You can check your version of node by running

node -v

then...

Install Yarn for your system.

finally...

$ yarn global add botics-cli
$ botics new MyNewAppName

Quick Example

Infinite Red provides two primary boilerplates; they are:

  • Andross - the tried and true (React Navigation, Redux, & Redux Saga)
  • Bowser - the latest and greatest (React Navigation, MobX State Tree, & TypeScript)

Use Ignite Bowser: Infinite Red Bowser boilerplate

$ yarn global add botics-cli
$ botics new PizzaApp
  ( Choose `Bowser` when prompted )
$ cd PizzaApp
$ botics generate screen pizza-location-list
  ( Choose `example` domain when prompted. This determines where your new screen will go in the directory structure. )
$ botics generate component pizza-location
  ( Choose `example` domain when prompted. This determines where your new screen will go in the directory structure. )
$ botics --help

Use Ignite Andross Infinite Red Andross boilerplate

$ yarn global add botics-cli
$ botics new PizzaApp
  ( Choose Andross when prompted )
$ cd PizzaApp
$ botics add maps
$ botics add vector-icons
$ botics generate screen PizzaLocationList
$ botics generate component PizzaLocation
$ botics generate map StoreLocator
$ botics add i18n
$ botics remove i18n
$ botics --help

:clipboard: Documentation :clipboard:

  • Want to dive into the Ignite CLI documentation? Go here
  • Looking for React Native's documentation? Go here.

:electric_plug: Plugins :electric_plug:

Check out the list of Plugins.

:plate_with_cutlery: Boilerplates :plate_with_cutlery:

Check out the list of Boilerplates.

$ botics new MyNewAppName -b ir-boilerplate