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 🙏

© 2024 – Pkg Stats / Ryan Hefner

animal-cli

v1.0.2

Published

工程脚手架

Downloads

1

Readme

animal-cli

npm install animal-cli -g

animal-cli是一个通用脚手架工程,用户可以添加自己维护的工程模板,用于初始化项目。脚手架以下命令行操作:

1、anim add

添加脚手架工程模板,通过交互式提示用户添加模板信息:

E:\animal>anim add
     _          _                 _   _
    / \   _ __ (_)_ __ ___   __ _| | | |
   / _ \ | '_ \| | '_ ` _ \ / _` | | | |
  / ___ \| | | | | | | | | | (_| | | |_|
 /_/   \_\_| |_|_|_| |_| |_|\__,_|_| (_)

? 请输入模板名称 zMock
? 请输入模板地址 https://github.com/Anglay/zMock.git#master
√ 模板添加成功!

* 支持以下模板创建项目

✔ zMock

2、anim list

查看已经添加维护的工程模板

E:\animal>anim list
     _          _                 _   _
    / \   _ __ (_)_ __ ___   __ _| | | |
   / _ \ | '_ \| | '_ ` _ \ / _` | | | |
  / ___ \| | | | | | | | | | (_| | | |_|
 /_/   \_\_| |_|_|_| |_| |_|\__,_|_| (_)

* 支持以下模板创建项目

✔ zMock

3、anim init

用于初始化项目

E:\animal>anim init
     _          _                 _   _
    / \   _ __ (_)_ __ ___   __ _| | | |
   / _ \ | '_ \| | '_ ` _ \ / _` | | | |
  / ___ \| | | | | | | | | | (_| | | |_|
 /_/   \_\_| |_|_|_| |_| |_|\__,_|_| (_)

? 请输入项目名称 zMock-test
? 请输入项目描述 zMock-test
? 请选择项目模板 zMock
√ 模板下载成功!
✔ 创建: zMock-test/.editorconfig
✔ 创建: zMock-test/.eslintrc
✔ 创建: zMock-test/.gitee
✔ 创建: zMock-test/.gitignore
✔ 创建: zMock-test/.roadhogrc.mock.js
✔ 创建: zMock-test/.webpackrc
✔ 创建: zMock-test/dist
✔ 创建: zMock-test/mock
✔ 创建: zMock-test/public
✔ 创建: zMock-test/README.en.md
✔ 创建: zMock-test/README.md
✔ 创建: zMock-test/src
✔ 创建: zMock-test/yarn.lock
✔ 创建: zMock-test/package.json


? 是否安装依赖(npm install)? (Use arrow keys)
> 是(YES)
  否(NO)

4、anim del

用于删除以添加的模板

E:\animal>anim del
     _          _                 _   _
    / \   _ __ (_)_ __ ___   __ _| | | |
   / _ \ | '_ \| | '_ ` _ \ / _` | | | |
  / ___ \| | | | | | | | | | (_| | | |_|
 /_/   \_\_| |_|_|_| |_| |_|\__,_|_| (_)

? 请选择需要删除的模板 zMock
√ 模板删除成功!

* 暂无模板,请通过anim add添加模板管理