Create React Library

CLI for creating reusable react libraries.
Alternatives To Create React Library
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
30 Days Of Javascript34,404
4 days ago1January 25, 2022225JavaScript
30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace.
Ink20,2534,1887845 days ago67October 07, 202165mitTypeScript
🌈 React for interactive command-line apps
Upterm19,482
4 years ago1September 06, 2015220mitTypeScript
A terminal emulator for the 21st century.
Nx16,97412626419 hours ago846September 23, 2022700mitTypeScript
Smart, Fast and Extensible Build System
Ignite15,03211a day ago37December 27, 201643mitTypeScript
Infinite Red's battle-tested React Native project boilerplate, along with a CLI, component/model generators, and more!
Codesandbox Client12,280461619 hours ago26March 11, 2021363otherJavaScript
An online IDE for rapid web development
Vue Native Core8,359333a year ago18July 07, 202131mitJavaScript
Vue Native is a framework to build cross platform native mobile apps using JavaScript
Infisical5,152
2 days ago113otherTypeScript
♾ Infisical is an open-source, end-to-end encrypted platform to sync secrets and configs across your team and infrastructure.
Create React Library4,7917232 days ago50June 01, 2020126JavaScript
CLI for creating reusable react libraries.
React Blessed4,04271762 years ago23March 11, 202137mitJavaScript
A react renderer for blessed.
Alternatives To Create React Library
Select To Compare


Alternative Project Comparisons
Readme

2022 Update

This tool is no longer actively maintained. I suggest using either tsup, tsdx, or microbundle.

Here's an article I wrote in April 2022 which should help you decide between these different tools.

create-react-library

CLI for creating reusable, modern React libraries using Rollup and create-react-app.

NPM Build Status JavaScript Style Guide

Intro

Features

  • Easy-to-use CLI
  • Handles all modern JS features
  • Bundles commonjs and es module formats
  • create-react-app for example usage and local dev
  • Rollup for bundling
  • Babel for transpiling
  • Jest for testing
  • Supports complicated peer-dependencies
  • Supports CSS modules
  • Optional support for TypeScript
  • Sourcemap creation
  • Thousands of public modules created
  • Thorough documentation 😍
  • Chinese docs by @monsterooo

Install globally

This package requires node >= 10.

npm install -g create-react-library

Usage with npx

npx create-react-library

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

Creating a New Module

create-react-library

Answer some basic prompts about your module, and then the CLI will perform the following steps:

  • copy over the template
  • install dependencies via yarn or npm
  • link packages together for local development
  • initialize local git repo

At this point, your new module should resemble this screenshot and is all setup for local development.

Development

Local development is broken into two parts (ideally using two tabs).

First, run rollup to watch your src/ module and automatically recompile it into dist/ whenever you make changes.

npm start # runs rollup with watch flag

The second part will be running the example/ create-react-app that's linked to the local version of your module.

# (in another tab)
cd example
npm start # runs create-react-app dev server

Now, anytime you make a change to your library in src/ or to the example app's example/src, create-react-app will live-reload your local dev server so you can iterate on your component in real-time.

Publishing to npm

npm publish

This builds commonjs and es versions of your module to dist/ and then publishes your module to npm.

Make sure that any npm modules you want as peer dependencies are properly marked as peerDependencies in package.json. The rollup config will automatically recognize them as peers and not try to bundle them in your module.

Deploying to Github Pages

npm run deploy

This creates a production build of the example create-react-app that showcases your library and then runs gh-pages to deploy the resulting bundle.

Use with React Hooks

If you use react-hooks in your project, when you debug your example you may run into an exception Invalid Hook Call Warning. This issue explains the reason, your lib and example use a different instance, one solution is rewrite the react path in your example's package.json to 'file:../node_modules/react' or 'link:../node_modules/react'.

Examples

Multiple Named Exports

Here is a branch which demonstrates how to use multiple named exports. The module in this branch exports two components, Foo and Bar, and shows how to use them from the example app.

Material-UI

Here is a branch which demonstrates how to make use of a relatively complicated peer dependency, material-ui. It shows the power of rollup-plugin-peer-deps-external which makes it a breeze to create reusable modules that include complicated material-ui subcomponents without having them bundled as a part of your module.

Boilerplate

The CLI is based on this boilerplate, which you can optionally read about here.

Libraries

Here are some example libraries that have been bootstrapped with create-react-library.

Want to see a more completed list? Check out Made with CRL.

Want to add yours to the list? Submit an PR at the Made with CRL repository.

License

MIT Travis Fischer

Support my OSS work by following me on twitter twitter

Popular Command Line Projects
Popular Reactjs Projects
Popular Command Line Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Reactjs
Cli
Particles
Rollup
Create React App
Preact