Socket
Socket
Sign inDemoInstall

@shesha/module-his

Package Overview
Dependencies
10
Maintainers
7
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @shesha/module-his

Boilerplate for writing React Libraries bundled with Rollup.js to commonJs and ES6 Modules and React Storybook


Version published
Weekly downloads
0
Maintainers
7
Created
Weekly downloads
 

Readme

Source

Shesha Module Boilerplate

shesha-module-boilerplate-0.x.x

Getting started

Familiar with Git?
git clone https://github.com/Boxfusion/shesha-module-boilerplate.git
cd shesha-module-boilerplate
npm install
npm install

Developing

To start the developing run :

npm run Storybook

This will build a version of your library, run the watcher and also run the Storybook. To open the Storybook manually open your Browser and navigate to http://localhost:6060. Start developing your components in src/components folder and update the src/index.js file accordingly. Always provide an YourComponent.stories.tsx file, so your component will show up in the Storybook. You can refer to example Button component, but i think you'll get the idea.

Proposals (Babel)

For smoother development some Babel plugin are included

Styling your components

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

Testing is done with Jest, Enzyme and Jasmine Matchers You can refer to Button.test.js as an example.

npm run test

or (for getting coverage)

npm run test:coverage

Linting

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.

npm run lint

or (for for automatic fixing if possible)

npm run lint:fix

Publishing your library to NPM

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 repository url, then:

npm publish

Storybook

For custom layouts, styling and more information about the Styleguide please refer to React Storybook documentation.

Scripts

  • 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, typescipt typecheck and stylelint.
  • yarn lint:fix : Runs the linter, typescipt typecheck and stylelint and fixes automatic fixable issues.
  • yarn eslint: Runs only the javascipt linter.
  • yarn eslint:fix: Runs only the javascipt linter and fixes automatic fixable issues.
  • yarn stylelint: Runs only the sytle linter.
  • yarn stylelint:fix: Runs only the sytle linter and fixes automatic fixable issues.
  • yarn check-types: Runs typescript type checker.
  • 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.

Resources

Bundler

Code Formatter

Commit lint & Conventional commit

Styleguide

Styleguide

Testing

Linting

Compiler

FAQs

Last updated on 07 Jun 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc