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

@aldegad/nuxt-core

v0.0.8

Published

Core package for My Nuxt Projects

Readme

@aldegad/nuxt-core

이 패키지는 vue-packages 모노레포의 일부로, 루트 저장소에서 통합 관리됩니다.

Vue 3 & Nuxt 3 기반의 컴포넌트 및 Composables 라이브러리입니다. 다른 Nuxt 프로젝트에서 재사용할 수 있도록, 제스처 인식, 오버레이, 커스텀 스크롤 등 실용적인 기능을 제공하며, 모바일 대응 및 퍼포먼스 최적화를 중점으로 설계되었습니다.

설치

npm install @aldegad/nuxt-core
# 또는
yarn add @aldegad/nuxt-core

빠른 시작

// 주요 컴포넌트 import
import { ColorPicker, Overlay, OverlayContextProvider, ScrollView } from "@aldegad/nuxt-core";
// 주요 composable import
import { useGesture, useOverlayContext } from "@aldegad/nuxt-core";
// 스타일 적용
import "@aldegad/nuxt-core/style.css";

주요 컴포넌트

  • ColorPicker: 색상 선택
  • Overlay, OverlayContextProvider: 오버레이 시스템
  • ScrollView: 커스텀 스크롤 뷰

주요 Composables

  • useGesture: 제스처 인식 (모바일 터치 최적화)
  • useOverlayContext: 오버레이 컨텍스트

특징

🚀 퍼포먼스 최적화

  • Vue 3의 Composition API 활용으로 번들 사이즈 최소화
  • Tree-shaking 지원으로 필요한 기능만 포함
  • 지연 로딩 및 코드 분할 최적화
  • 메모리 효율적인 이벤트 관리

📱 모바일 대응

  • 터치 제스처 및 멀티터치 지원
  • 반응형 디자인 컴포넌트
  • 모바일 브라우저 호환성 보장
  • 터치 디바이스 최적화된 인터랙션

스타일 적용

import "@aldegad/nuxt-core/style.css";

빌드 및 배포 (개발자용)

# 빌드
npm run build:lib
# 배포
npm publish --access public

프로젝트 구조

src/
├── components/   # Vue 컴포넌트
├── composables/  # Vue Composables
├── schemas/      # 타입 정의
├── stores/       # Pinia 스토어
├── utils/        # 유틸리티 함수
└── assets/       # 스타일 및 폰트

라이선스

MIT