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

@makecode/state-manager

v1.0.1

Published

전역 상태 관리

Downloads

69

Readme

@makecode/state-manager

@makecode/state-manager는 간단하면서도 강력한 상태 관리 라이브러리입니다. 이 라이브러리는 중소 규모 프로젝트에서 전역 상태를 관리하기에 적합합니다.

주요 기능

  • 간단한 API: 직관적인 메서드(get, set, merge)로 상태 관리.
  • 이벤트 기반 구독: 상태 변경 시 실행되는 핸들러 등록.
  • 특정 상태값 감지: 특정 상태 값에 따라 핸들러를 실행.
  • 타입스크립트 지원: 타입 안전한 상태 관리.

설치 방법

라이브러리를 설치하려면 다음 명령어를 사용하세요:

npm install @makecode/state-manager

또는

yarn add @makecode/state-manager

사용법

1. 초기화 및 상태 설정

StateManager 인스턴스를 생성하고 상태를 설정합니다:

import StateManager from '@makecode/state-manager';

const state = new StateManager();

// 상태 설정
state.set({
  key: 'user',
  value: { name: 'Alice', age: 25 },
});

2. 상태 구독

상태가 변경될 때마다 특정 로직을 실행하고 싶다면 구독 기능을 사용할 수 있습니다:

// 상태 변경 구독
const unsubscribe = state.subscribe('user', (newValue, oldValue) => {
  console.log('사용자 상태 변경!');
  console.log('이전:', oldValue);
  console.log('현재:', newValue);
});

// 상태 변경
state.set({
  key: 'user',
  value: { name: 'Alice', age: 26 },
});

// 구독 해제
unsubscribe();

3. 상태 병합

기존 상태를 유지하면서 일부 값을 업데이트하려면 merge 메서드를 사용하세요:

state.merge({
  key: 'user',
  value: { location: 'New York' },
});

console.log(state.get('user'));
// 출력: { name: 'Alice', age: 26, location: 'New York' }

4. 특정 값 이벤트 핸들링

특정 상태 값에 따라 핸들러를 실행하려면 on 메서드를 사용합니다:

state.on({
  key: 'user.age',
  value: 30,
  handler: () => {
    console.log('사용자의 나이가 30이 되었습니다!');
  },
});

// 상태 변경
state.set({ key: 'user', value: { name: 'Alice', age: 30 } });
// 출력: 사용자의 나이가 30이 되었습니다!