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

@gyo-framework/cli

v0.1.0

Published

CLI tool for Gyo framework - Build cross-platform apps with web technologies

Readme

Gyo CLI

개발 환경 설정

초기 설정

cd cli
npm install
npm run build
npm link  # gyo 명령어를 전역으로 사용 가능하게 함

개발 모드 (자동 빌드)

CLI 코드를 수정하면 자동으로 빌드되어 바로 사용할 수 있습니다:

# 터미널 1: watch 모드 실행 (코드 수정 시 자동 빌드)
npm run dev

# 터미널 2: gyo 명령어 테스트
cd /path/to/test-project
gyo run

수동 빌드

npm run build

기능

이 폴더에는 gyo 프로젝트의 생성, 빌드, 실행 등 전체적인 라이프사이클을 관리하는 Command Line Interface (CLI) 도구가 포함되어 있습니다. TypeScript로 작성되었으며, 사용자가 gyo 명령어를 통해 프로젝트와 상호작용할 수 있는 인터페이스를 제공합니다.

주요 명령어

  • gyo create: 새로운 gyo 프로젝트를 생성합니다.
  • gyo run: Android 또는 iOS 플랫폼으로 앱을 실행합니다.
  • gyo build: 앱을 배포용으로 빌드합니다.
  • gyo clean: 빌드 캐시 및 임시 파일을 삭제합니다.
  • gyo config: gyo 관련 설정을 확인하고 수정합니다.
  • gyo doctor: 개발 환경에 필요한 요소들이 올바르게 설정되었는지 확인합니다.

앞으로 추가할 기능 (Todo List)

  • [ ] gyo test 명령어 추가 (단위 및 통합 테스트 프레임워크 연동)
  • [ ] gyo lint 명령어 추가 (프로젝트 전체의 코드 스타일 및 정적 분석 기능)
  • [ ] 각 명령어에 대한 상세 도움말 기능 강화 (gyo create --help)
  • [ ] 더 나은 오류 처리 및 사용자 피드백 메시지 개선
  • [ ] 플러그인 시스템을 도입하여 CLI 기능의 확장성 제공
  • [ ] 자동 업데이트 기능 추가 (gyo upgrade)