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

@gaonjs/data

v0.26.4

Published

Gaon 데이터 레이어 — 스키마 DSL·모델·마이그레이션·관계·집계·조인 (Kysely 기반)

Readme

@gaonjs/data

Gaon 데이터 레이어 — 스키마 DSL, model() 런타임(Kysely 기반), 마이그레이션 diff, 멀티 DB 커넥션. 스키마에서 tables.d.ts 타입 브리지를 생성해 타입이 끝까지 흐릅니다.

이 패키지는 gaonjs 파사드에 포함됩니다 — 직접 설치하지 않고 서브패스로 씁니다:

import { table, t, model } from 'gaonjs/data'

모든 모델은 스키마 파생 폼 Model.form 을 노출합니다 — 컨트롤러 this.params(Model.form) 에 넘기면 컬럼 타입으로 런타임 검증까지 합니다. 일부 컬럼만 받을 때는 pick() 으로 좁힙니다(검증 유지 · 원 폼 불변):

// 지정한 컬럼만 검증·통과하는 새 폼 — 안 고른 필수 컬럼은 요구하지 않습니다.
const data = this.params(Comment.form.pick('postId', 'author', 'body'))
  • 홈페이지 / 문서: https://gaonjs.dev
  • 라이선스: MIT