npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gosrock-storybook

v1.4.23

Published

hongik univ gosrock band React UI components

Downloads

57

Readme

Gosrock-storybook

semantic-release: angular gosrock gosrock gosrock

:bulb: Getting started

  • add dependency
npm install gosrock-storybook
  • how to use
import { GoBackButton } from 'gosrock-storybook';
// need to add css file Don't forget
import 'gosrock-storybook/dist/gosrockStyle.css';

function App() {
  return (
    <>
        <GoBackButton primary={true} label={'asdf'}></GoBackButton>
    <>
  );
}

:books: Document

we are make our components in story book. So if we add some components you can find document and example of useage in storybook.

check our stories and document via github page :arrow_right::arrow_right::arrow_right: storybook url


:full_moon_with_face: how we work?

we are using husky to add custom git hook and prettier the code, commitlint to validate commit msg and using commitizen to easy commint

see .husky file pre-commit , prepare-commit-msg , commit-msg shell command


:smoking: How to contribute

step 1.

  • clone the repo (who member of @gosrcok)
npm install -g commitizen
// you sholud install commitizen to use git cz command
npm install

step 2.

npm run storybook

step 3.

 git add .
 git commit

if you type git commit than commitizen automatically come out and choose type of change. 무제


step 4.

  • I need package my output.

:bangbang: we are using semantic-release to deploy npm package with github action. so you need to keep angular commit message convention

if you want to upgrade the version than add commit message with in ["fix" , "feat" , "perf"]

  • include fix -> upgrade version 0.0.1
  • include feat -> upgrade version 0.1.0
  • include perf -> upgrade version 1.0.0

see the below meaning of the commit msg.

see how does it works in semantic-release document

| Commit message | Release type | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | | fix(pencil): stop graphite breaking when too much pressure applied | ~~Patch~~ Fix Release | | feat(pencil): add 'graphiteWidth' option | ~~Minor~~ Feature Release | | perf(pencil): remove graphiteWidth optionBREAKING CHANGE: The graphiteWidth option has been removed.The default graphite width of 10mm is always used for performance reasons. | ~~Major~~ Breaking Release (Note that the BREAKING CHANGE: token must be in the footer of the commit) |

if push or merge event occur in main branch ( see .github/workflows) than semantic-release-action is see all commit msg to deploy automatically version upgrade.