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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zoneflow/core

v0.0.13

Published

Zoneflow core model, layout, mutation, validation, and document utilities.

Readme

@zoneflow/core

@zoneflow/core는 Zoneflow의 도메인 레이어입니다.

이 패키지는 다음 역할을 담당합니다.

  • UniverseModel, UniverseLayoutModel 타입
  • zone / path 생성, 수정, 삭제 mutation
  • lookup / validation 유틸
  • layout 유틸
  • zoneflow 문서 import / export

일반적으로 @zoneflow/react와 함께 사용합니다.

설치

pnpm add @zoneflow/core

포함 기능

  • 모델 타입
    • UniverseModel
    • UniverseLayoutModel
    • Zone
    • Path
  • mutation
    • createZone
    • updateZone
    • removeZone
    • addPath
    • updatePath
    • removePath
  • layout
    • createUniverseLayoutModel
    • createZoneLayout
    • getZoneLayout
    • updateZoneLayout
  • 문서 포맷
    • createZoneflowDocument
    • serializeZoneflowDocument
    • parseZoneflowDocument

최소 예제

import {
  createUniverseId,
  createUniverseLayoutModel,
  createZoneId,
  createZone,
  createZoneLayout,
  serializeZoneflowDocument,
} from "@zoneflow/core";

const universeId = createUniverseId();

let model = {
  version: "1.0.0",
  universeId,
  rootZoneIds: [],
  zonesById: {},
};

let layoutModel = createUniverseLayoutModel({
  universeId,
  version: "1.0.0",
});

model = createZone(model, {
  id: createZoneId(),
  name: "Start",
  zoneType: "action",
  parentZoneId: null,
});

const rootZoneId = model.rootZoneIds[0];

layoutModel = {
  ...layoutModel,
  zoneLayoutsById: {
    ...layoutModel.zoneLayoutsById,
    [rootZoneId]: createZoneLayout({
      x: 120,
      y: 100,
      width: 220,
      height: 140,
    }),
  },
};

const json = serializeZoneflowDocument({
  model,
  layoutModel,
});

문서 저장 / 불러오기

Zoneflow 문서 포맷은 다음 함수를 사용합니다.

import {
  serializeZoneflowDocument,
  parseZoneflowDocument,
} from "@zoneflow/core";

const json = serializeZoneflowDocument({
  model,
  layoutModel,
});

const documentBundle = parseZoneflowDocument(json);

문서 형식:

{
  "kind": "zoneflow/universe",
  "formatVersion": 1,
  "exportedAt": "2026-03-31T12:00:00.000Z",
  "model": {},
  "layoutModel": {}
}

레거시 호환을 위해 raw { "model": ..., "layoutModel": ... } 형태도 읽을 수 있습니다.

함께 쓰는 패키지

  • 렌더링/에디팅 UI까지 필요하면 @zoneflow/react

레포지토리: github.com/groobee/zoneflow