
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
react-pangu
Advanced tools
Boilerplate for writing React Libraries bundled with Rollup.js to commonJs and ES6 Modules and React Styleguidist
If you like the project and want to support my work, you can buy me a coffee :)
There are two methods for getting started with this repo.
> git clone git@github.com:paiyou-network/react-pangu.git
> cd react-pangu
> yarn install
Click here to download the .zip file. Extract the contents of the zip file, then open your terminal, change to the project directory, and:
> yarn install
To start the developing run :
> yarn dev
This will build a version of your library, run the watcher and also run the Styleguide.
To open the Styleguide manualy open your Browser and navigate to http://localhost:6060.
Start developing your components in src/lib/components folder and update the src/lib/index.js file acordingly.
Always provide an YourComponent.examples.md file, so your component will show up in the Styleguide.
You can refer to example Button component, but i think you'll get the idea.
For smoother development some Babel plugin are included
SCSS and CSS are supported out of the box just import your styles into your component like you normaly would do.
For the use of CSS Modules refere to rollup-plugin-postcss
Testing is done with Jest, Enzyme and Jasmine Matchers
You can refer to Button.test.js as an example.
> yarn test
or (for getting coverage)
> yarn test:coverage
Linting is set up through ESLint and configured with eslint-config-airbnb
You can modify linting rules by overriding them in the .eslintrc.json file.
> yarn lint
or (for for automatic fixing if possible)
> yarn lint:fix
To release your library to NPM or your private Registry, make sure you have an active account at NPM, your .npmrc file is correctly setup and the repository url in package.json file is set to your repoitory url, then:
> yarn release
For custom layouts, styleing and more information about the Styleguide please refer to React Styleguidist documentation.
Make sure the repository url in package.json file is set to your repoitory url, then:
> yarn deploy
yarn dev : Executes the develop mode, running watcher and the Stylguide, rebuilding your library on every change.yarn start : Only serves the Styleguide.yarn build : Builds your library (build can be faound in dist folder).yarn styleguide:build : Builds the static Styleguide in case you want to deploy it.yarn test : Runs the tests.yarn test:coverage: Runs the test and shows the coverage.yarn lint : Runs the linter.yarn lint:fix : Runs the linter and fixes automatic fixable issues.yarn release : Publishes your Library on NPM or your private Registry (depending on your config in your .npmrc file).yarn deploy: Deploys the Styleguide to GitHub Pages.FAQs
Boilerplate for writing React Libraries bundled with Rollup.js to commonJs and ES6 Modules and React Styleguidist
We found that react-pangu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.