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

@things-factory/menu-base

v7.0.1-alpha.57

Published

Module to provide routing actions between parent menu and child menu

Downloads

4,950

Readme

  • base 모듈의 목적
    • 특정 목적을 위해 만들어지는 모듈셋의 전반적인 구조를 정의한다.
      • 핵심적인 서비스 기능을 구현한다.
        • 정적인 공통기능
      • 상태를 유지해야하는 서비스인 경우는 store를 활용한다.
        • store에 reducer를 추가하고, action을 제공한다.
      • 서비스 기능이나 action은 index.js를 통해서 export 해서, 서브모듈들이 사용할 수 있도록 한다.
  • menu-base 의 기능
    • 사용자에 특화된 메뉴의 구조를 정의한다.
    • 메뉴의 선택시에 어떻게 라우팅되어야 하는지에 대한 구조를 정의한다.
    • 라우팅의 종류를 추가할 수 있는 구조를 정의한다.
      • 메뉴는 여러가지 타입으로 구성될 수 있으며, 각 타입별로 라우팅 방법이 달라질 수 있다.
      • 다른 모듈들은 menu-base 모듈의 action addRoutingType 을 이용해서 타입별로 라우팅될 페이지를 정의할 수 있다