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

ng-antd-cli

v0.0.2

Published

a simple nodejs cli

Readme

ng-antd-cli

主要是一个简单的node.js开发的脚手架

该项目主要是将一个已有的项目架构引用过来,做成一个可以通过简单命令行,生成指定目录结构与内容的脚手架工具

脚手架安装

全局安装,方便随时使用对应命令

npm i ng-antd-cli -g

设置环境变量

主要是为了全局识别脚手架的命令:

查看npm包的全局安装位置

npm get prefix 

更改npm包的全局安装位置

npm config set prefix D:\nodejs\node_global

设置环境变量

计算机->鼠标右键->属性->高级系统设置

设置用户变量

NODE_GLOBAL = D:\nodejs\node_global(也可使用其他名称,路径为你全局安装的位置)

然后在path用户变量后面添加 %NODE_GLOBAL%

命令名称

命令名称是定义在package.json中的commandName:'soil'

查看命名行版本

打开cmd命令行 输入 -v,查看脚手架版本,若输出版本信息,则确定生成成功

<commandName> -v

查看相关命令行说明

<commandName> -h

项目初始化

在指定路径下初始化项目:

soil init <项目名称>