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

cra-template-mb-ui

v1.9.3

Published

Create react app template for building UI's

Downloads

19

Readme

Create-React-App Template | Mindbody UI

This template will get you started with all create-react-app features as well as:

  • TypeScript
  • SCSS
  • Storybook (if you want to use it)
  • React Testing Library (see below for setting up test coverage)
  • Conventional Commits (see below for some setup required)

Getting Started

First create your react app using this template with create-react-app (CRA)

npx create-react-app your-app-name --template mb-ui

Workflow

You have two options of how you want to build your UI

  • Using CRA default yarn start which will load your application as you would expect CRA to do.
  • Using storybook by adding a *.stories.tsx and viewing your application in storybook allowing for multiple instances and setups along with individual components.
  • Use the docker files to determine which yarn scripts are run during gated/builds

Deployment

Single Page Application (SPA)

Use the yarn build to produce a build/{all application assets} directory which contains the assets needed to publish.

Shared UI

If you are building a shared UI you will need to follow the version strategy described below. Before each PR completion you need to update the version using the yarn version:bump script included in this template. For bundling use the yarn build:ui which does a check to see if the version exists on the CDN you are deploying to.

Create a .env file for the build pipeline with the following:

PUBLIC_URL=https://your.cdn.com/path/to/assets/

This will produce a build/1.2.3/{all application assets} along with a build/1.2.3/app.js which you will reference in the consuming application.

An example of consumption if your .env file looked like the example above and your package version contained 1.2.3:

<script src="https://your.cdn.com/path/to/assets/1.2.3/app.js"></script>

For local development you may want a different PUBLIC_URL, if so you can create a .env.local with overrides needed. Please see the offical documentation for priority and other development features this file can do for you.

Testing

  1. yarn test:watch watches tests as you change them
  2. yarn test:ci sets the continuous integration environment flag

You can pass --coverage to get the coverage output to either of these commands

This project is setup to use @testing-library/react for behavioral driven tests giving you the most confidence when shipping your application.

Add this to your package.json to collect coverage from some files found in your src directory:

"jest": {
    "collectCoverageFrom": [
        "src/**/*.ts",
        "src/**/*.tsx",
        "!src/**/*.stories.tsx",
        "!src/**/index.ts",
        "!src/**/index.tsx",
        "!src/**/*.d.ts"
    ],
}

Styling

This ships with the ability to use SCSS and postcss modules that automatically inject cross browser prefixes keeping your source code concise.

The convention needed is to name your file *.module.scss. Then you can import your styles as import styles from '*.module.scss' and consume them <div className={styles.someClassName} /> . This will tell react to hash the class names to avoid CSS naming collisions.

Versioning strategy

Using conventional commits

Follow the conventional commit template for each commit.

This allows you to run yarn version:bump that saves your commits to a changelog and updates your package.json automatically. Do this before merging a pull request to deploy a versioned bundle of your shared UI application.

In order for this command to work properly (BREAKING CHANGE/feat/fix to update major/minor/patch) your application version must be at least at version 1.0.0

Configuring conventional commits

Run yarn add husky. The .huskyrc.json is what triggers the conventional commits git hook to run.