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

svton

v1.0.0

Published

Svton Framework - Full-stack application framework with CLI, packages, and templates

Downloads

122

Readme

Svton 框架

全栈应用框架,包含 CLI 工具、共享包和项目模板

License: MIT

概述

Svton 是一个完整的全栈应用框架,提供:

  • CLI 工具 (svton) - 一条命令创建新项目
  • 共享包 - 可复用的 API 客户端、Hooks 和 UI 组件库
  • 项目模板 - 生产级别的后端、管理后台和移动端模板
  • 文档 - 完整的开发指南和架构文档

包列表

| 包名 | 描述 | npm | |------|------|-----| | @svton/cli | CLI 脚手架工具 | npm | | @svton/api-client | TypeScript API 客户端 | npm | | @svton/hooks | React Hooks 集合 | npm | | @svton/taro-ui | Taro UI 组件库 | npm |

快速开始

# 创建新项目
npx @svton/cli create my-app

# 或全局安装后使用
npm install -g @svton/cli
svton create my-app

项目模板

  • 全栈模板 - 后端 (NestJS) + 管理后台 (Next.js) + 移动端 (Taro)
  • 仅后端 - NestJS + Prisma + MySQL + Redis
  • 仅管理后台 - Next.js + TailwindCSS + shadcn/ui
  • 仅移动端 - Taro + React (微信小程序)

开发

# 安装依赖
pnpm install

# 构建所有包
pnpm build

# 开发模式
pnpm dev

# 运行测试
pnpm test

项目结构

svton/
├── packages/
│   ├── cli/              # svton CLI 工具
│   ├── api-client/       # @svton/api-client
│   ├── hooks/            # @svton/hooks
│   └── taro-ui/          # @svton/taro-ui
├── templates/
│   ├── apps/
│   │   ├── admin/        # Next.js 管理后台模板
│   │   ├── backend/      # NestJS 后端模板
│   │   └── mobile/       # Taro 移动端模板
│   └── packages/
│       └── types/        # 类型定义包模板
├── docs/                 # 文档
├── package.json
├── pnpm-workspace.yaml
└── turbo.json

贡献

  1. Fork 本仓库
  2. 创建功能分支 (git checkout -b feature/amazing-feature)
  3. 提交更改 (git commit -m 'feat: 添加新功能')
  4. 推送到分支 (git push origin feature/amazing-feature)
  5. 创建 Pull Request

许可证

MIT © SVTON Team