All Projects → transitive-bullshit → Create React Library

transitive-bullshit / Create React Library

⚡CLI for creating reusable react libraries.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
typescript
32286 projects

Projects that are alternatives of or similar to Create React Library

React Modern Library Boilerplate
Boilerplate for publishing modern React modules with Rollup
Stars: ✭ 285 (-93.74%)
Mutual labels:  rollup, create-react-app, babel, library, component, preact
React Component Library
A project skeleton to get your very own React Component Library up and running using Rollup, Typescript, SASS + Storybook
Stars: ✭ 313 (-93.13%)
Mutual labels:  rollup, library, component
Ts Monorepo
Template for setting up a TypeScript monorepo
Stars: ✭ 459 (-89.92%)
Mutual labels:  rollup, create-react-app, babel
Paper Onboarding
PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion
Stars: ✭ 3,147 (-30.9%)
Mutual labels:  library, component
Rollup Plugin Ts
A Typescript Rollup plugin that bundles declarations and respects Browserslists
Stars: ✭ 273 (-94.01%)
Mutual labels:  rollup, babel
React Spectrum
Generate colorful text placeholders 🎨
Stars: ✭ 289 (-93.65%)
Mutual labels:  rollup, library
To lang
Translate Ruby strings and arrays with Google Translate.
Stars: ✭ 303 (-93.35%)
Mutual labels:  cli, library
Instapy Gui
gui for instapy automation
Stars: ✭ 313 (-93.13%)
Mutual labels:  babel, preact
Circle Menu
⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion
Stars: ✭ 3,306 (-27.4%)
Mutual labels:  library, component
Ava
Node.js test runner that lets you develop with confidence 🚀
Stars: ✭ 19,458 (+327.27%)
Mutual labels:  cli, babel
Wmr
👩‍🚀 The tiny all-in-one development tool for modern web apps.
Stars: ✭ 4,372 (-4%)
Mutual labels:  rollup, preact
Swaggen
OpenAPI/Swagger 3.0 Parser and Swift code generator
Stars: ✭ 385 (-91.55%)
Mutual labels:  cli, library
Paper Switch
🎚 RAMPaperSwitch is a Swift material design UI module which paints over the parent view when the switch is turned on. iOS library by @Ramotion
Stars: ✭ 2,902 (-36.28%)
Mutual labels:  library, component
Pygogo
A Python logging library with superpowers
Stars: ✭ 265 (-94.18%)
Mutual labels:  cli, library
Grafoo
A GraphQL Client and Toolkit
Stars: ✭ 264 (-94.2%)
Mutual labels:  babel, preact
react-app-rewire-babel-loader
Rewire babel-loader loader in your create-react-app project using react-app-rewired.
Stars: ✭ 20 (-99.56%)
Mutual labels:  babel, create-react-app
Esri Loader
A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications
Stars: ✭ 400 (-91.22%)
Mutual labels:  rollup, preact
rollup-lib-bundler
Simple lib bundler
Stars: ✭ 13 (-99.71%)
Mutual labels:  babel, rollup
monoreact
📦 React workspaces implementation
Stars: ✭ 13 (-99.71%)
Mutual labels:  create-react-app, rollup
React Hint
Tooltip component for React, Preact, Inferno
Stars: ✭ 338 (-92.58%)
Mutual labels:  component, preact

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.

Notice

My open source efforts are now focused on Saasify, and I am not able to invest a significant amount of time into maintaining CRL anymore. I am looking for volunteers who would like to become active maintainers on the project. If you are interested, please shoot me a note.

License

MIT © Travis Fischer

Support my OSS work by following me on twitter twitter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].