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

shenyan-cli

v3.2.7

Published

多端开发模板,现支持下载数海 UAA/公司 Lauth 后管模板

Readme

脚手架(shenyan-cli)

多端开发模板,现支持下载数海 UAA/公司 Lauth 后管模板

功能

  • 配置本地文件或者终端开发环境文件.syclirc 一键生成模版

使用准备

  • 安装命令:
pnpm install -g shenyan-cli

配置使用

Node.js 版本:22+ 或更高

alt text

基础配置

创建 .syclirc 配置文件(可放在用户主目录或项目目录):

{
  "defaultRepo": "github",
  "reposLocal": {}
}

配置说明

  • defaultRepo: 下载源配置,可选值:
    • "github" - 从GitHub下载(默认,支持子目录直接下载)
    • "gitee" - 从Gitee下载(会先下载整个仓库再复制子目录)
  • reposLocal: 本地仓库映射,格式为 {"模板名": "本地路径"}

注意事项

  • GitHub: 支持直接下载指定子目录,速度较快
    • URL格式: github:dushenyan/templates/template-name
  • Gitee: 同样支持直接下载子目录,使用tiged的子目录语法
    • 仓库结构: main分支下包含多个模板子目录
    • URL格式: https://gitee.com/dushenyan/templates/template-name
  • 确保网络能够正常访问对应的代码托管平台

语法说明

tiged支持的子目录语法:

# GitHub 简写格式
github:user/repo/subdirectory

# Gitee 完整URL格式
https://gitee.com/user/repo/subdirectory

# 指定分支的子目录
https://gitee.com/user/repo#branch/subdirectory

支持的模板

当前支持的模板包括:

  • data-screen-template - 数据大屏模板
  • geeker-admin - 管理系统模板
  • uniapp-template - UniApp模板
  • vutron - Vutron模板
  • 等更多模板...

示例配置

{
  "defaultRepo": "gitee",
  "reposLocal": {
    "my-template": "/path/to/local/template",
    "another-template": "/Users/username/templates/my-vue-template"
  }
}

配置文件位置优先级

  1. 当前工作目录的 .syclirc
  2. 用户主目录的 .syclirc
  3. 默认配置

然后正常运行脚手架命令:

syc create my-project

创建项目

要创建新项目,请使用以下命令:

npx syc create <project-name>

如果您需要强制创建,可以使用 -f--force 选项:

syc create <project-name> -f

查看命令详细信息

获取帮助信息:

syc --help

查看当前版本:

syc --version

构建开发

npm run build
npm link

版本发布

npm login
npm publish --access public