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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sshrik/bp

v0.4.0

Published

Basic Typescript React Boiler plate.

Downloads

30

Readme

bp

basic boiler plate project.

How to use?

시작하기 위해선 다음처럼 진행합니다.


# To run typescript project
npx @sshrik/bp APP_NAME

# To run javascript project
npx @sshrik/bp -t js APP_NAME

# To run typescript react project
npx @sshrik/bp -t react-ts APP_NAME

# or you can use shorthand project type
npx @sshrik/bp -t rts APP_NAME

# After make project finish
cd APP_NAME
yarn

How to run? - typescript react

실행하기 위해선 다음처럼 사용합니다. 기본포트는 8000입니다.

yarn run:dev # localhost:8000 으로 시작하기
yarn build # build
yarn lint:fix # lint 고치기

How to run? - typescript / javascript

hello world 를 출력하는 기본 프로젝트입니다.

yarn dev

프로젝트에는

이 프로젝트에는 다음과 같은 라이브러리들이 포함되어 있습니다.

Typescript React

  • Typescript
  • ES Lint + Prettier
  • React + React Router
  • styled-component
  • Webpack

Code Rule

이 프로젝트는 AirBnB Codestyle을 따릅니다. 그러나 개발 편의상 다른점이 있습니다.

ImportNamespaceSpecifier

일반적으로 아래와 같은 코드는 Anit-Pattern입니다. 필요하지 않은 모든 컴포넌트들을 로딩하는 것은 더 많은 시간이 걸릴 것 입니다.

import * as S from 'components/typo.styles';

그러나 이 프로젝트는 ~.style.ts 같이 style.[ext]로 끝나는 파일에 대해서 import * 하는것을 막지 않습니다. 그 외의 import * / export * 은 ESLint 규칙 중 no-restricted-syntax 에 의해 금지됩니다.