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 🙏

© 2025 – Pkg Stats / Ryan Hefner

orion-admin-generator

v1.1.7

Published

管理系统的帮助工具,可以快速搭建、生成、开发基于 orion admin 模版的管理后台

Downloads

14

Readme

orion admin generator

管理系统的帮助工具,可以快速搭建、生成、开发基于 orion admin 模版的管理后台

使用

1. 推荐使用 orion-admin-generator 自动化生成工具,自动生成系统所需的 action,page 和添加菜单数据

安装 orion cli

npm i orion-admin-generator -g # 安装成功可以使用 orion cli

orion -v

生成项目,根据提示操作即可,方便轻松

orion init
# 此处是分步操作,根据提示,分别输入项目的英文名称,开发者名称
# 以下例子使用 test-proj
# 初始化成功后会在当前目录生成 ./test-proj 项目

项目初始化

cd ./test-proj

npm run init
# 运行初始化脚本,程序会自动执行 npm install; git init; npm run setVersion,并且生成系统需要的一些依赖文件,等两分钟就好了

准备就绪,启动项目,程序自动在浏览器中打开,并且提供 webpack react 的热更新机制

npm start

添加功能页面,以 “系统公告 xtgg” 为例

orion add xtgg

# 此处同样是分步操作,根据提示选择页面的类型,输入页面的中文名称即可
# 页面类型 report | form | iframe(未实现)
# 后面会详细讲述不同的类型

系统会在项目对应的目录下创建 xtgg.js,并且添加到菜单中,菜单可以自行调整位置