- Notifications
You must be signed in to change notification settings - Fork299
CLI for creating reusable react libraries.
transitive-bullshit/create-react-library
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This tool is no longer actively maintained. I suggest using eithertsup,tsdx, ormicrobundle.
Here's anarticle I wrote in April 2022 which should help you decide between these different tools.
CLI for creating reusable, modern React libraries using Rollup and create-react-app.
- Easy-to-use CLI
- Handles all modern JS features
- Bundles
commonjs
andes
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
This package requiresnode >= 10
.
npm install -g create-react-library
npx create-react-library
(npx comes with npm 5.2+ and higher, seeinstructions for older npm versions)
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.
Local development is broken into two parts (ideally using two tabs).
First, run rollup to watch yoursrc/
module and automatically recompile it intodist/
whenever you make changes.
npm start# runs rollup with watch flag
The second part will be running theexample/
create-react-app that's linked to the local version of your module.
# (in another tab)cd examplenpm start# runs create-react-app dev server
Now, anytime you make a change to your library insrc/
or to the example app'sexample/src
,create-react-app
will live-reload your local dev server so you can iterate on your component in real-time.
npm publish
This buildscommonjs
andes
versions of your module todist/
and then publishes your module tonpm
.
Make sure that any npm modules you want as peer dependencies are properly marked aspeerDependencies
inpackage.json
. The rollup config will automatically recognize them as peers and not try to bundle them in your module.
npm run deploy
This creates a production build of the examplecreate-react-app
that showcases your library and then runsgh-pages
to deploy the resulting bundle.
If you usereact-hooks in your project, when you debug your example you may run into an exceptionInvalid Hook Call Warning. Thisissue explains the reason, your lib and example use a different instance, one solution is rewrite thereact
path in your example'spackage.json
to 'file:../node_modules/react' or 'link:../node_modules/react'.
Here is abranch which demonstrates how to use multiple named exports. The module in this branch exports two components,Foo
andBar
, and shows how to use them from the example app.
Here is abranch which demonstrates how to make use of a relatively complicated peer dependency,material-ui. It shows the power ofrollup-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.
The CLI is based on thisboilerplate, which you can optionally read abouthere.
Here are some example libraries that have been bootstrapped withcreate-react-library
.
- tabler-react - React components and demo for the Tabler UI theme.
- react-background-slideshow - Sexy tiled background slideshow for React 🔥
- react-starfield-animation -Canvas-based starfield animation for React ✨
- react-particle-effect-button - Bursting particle effect buttons for React 🎉
- react-particle-animation - Canvas-based particle animation for React 🌐
- react-block-image - React replacement for img with more control + fallback support 🌃
- react-mp3-recorder - Microphone recorder for React that captures mp3 audio 🎵
- react-before-after-slider - A sexy image comparison slider for React.
- worldwind-react-globe - NASA WorldWind globe component for React.
- react-shimmer - Shimmer effect for loading images.
- react-login-modal-sm - Customizable React social media login modal.
- react-gradient-scroll-indicator - Wrapper for scrollable content with gradients.
- react-editext - Editable Text Component.
- ... and hundreds more!
Want to see a more completed list? Check outMade with CRL.
Want to add yours to the list? Submit anPR at theMade with CRL repository.
MIT ©Travis Fischer
Support my OSS work byfollowing me on twitter
About
CLI for creating reusable react libraries.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.