Skip to content

xsf0105/create-react-library

Repository files navigation

react-to-npm

This project is based on create-react-app, in this project you can create your own UI library, and publish it to NPM.

中文版本

Getting Started

Install dependencies

yarn install
or 
npm install

Start development server

yarn start
or 
npm start

Then you can run this project in your browser http://localhost:3000

Build library

yarn run build
or 
npm run build

Publish library to NPM

npm publish

Example Usage

npm install react-to-npm
import { MyButton } from "react-to-npm";

<MyButton
    type="default"
    text="this is a examle component"
    onClick={()=>{console.log("clicked")}}
/>

License

MIT

About

Create your own UI component library based on React.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published