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

@aep-cli/cli

v1.1.7

Published

AEP平台自定义页面本地开发脚手架

Readme

AEP-CLI

AEP 平台自定义页面本地开发脚手架

安装:
npm install @aep-cli/cli -g
文件结构说明:
1、templates --- 存放所有的模板文件,用于生成自定义页面
颜色使用说明
信息类型: blueBright
警告类型: yellowBright
错误类型: redBright
Nginx配置
    location ~ ^/aep/cusview/(?<id>\d+) {
        alias /$id/dist;
        try_files $uri $uri/ /$id/dist/index.html;
        expires 1d;
        access_log off;
    }
注意事项:
1、发布使用npm publish
2、发布前需要修改package.json中的version
3、发布前需要修改npm源:npm config set registry https://registry.npmjs.org

镜像npm源:https://registry.npmmirror.com
使用说明:
1、创建自定义页面:aep create [projectId]
例如:aep create 1889604047061897218
此命令会在当前目录下创建一个名为1889604047061897218的文件夹,文件夹中包含了自定义页面基础的依赖及相关配置项,如果需要增加其他配置,需要自行添加,自行添加的方法按照需要的依赖包说明进行添加即可

2、cd 到创建的自定义页面目录下,执行npm install安装依赖或者yarn install安装依赖
例如:cd 1889604047061897218 && npm install

3、执行npm run dev启动本地开发环境
例如:npm run dev

4、打包并压缩自定义页面:aep build
例如:aep build
此命令会在当前目录下生成一个名为1889604047061897218的文件夹,并且生成一份压缩包,压缩包的名称为1889604047061897218.zip,将该压缩包上传至平台内即可。

5、另一种压缩方法:npm run build 或者 yarn build
例如:npm run build
此命令会在当前目录下生成一个名为1889604047061897218的文件夹,文件夹中包含了自定义页面的打包产物,将该文件夹压缩成zip文件,上传至平台内即可。

6、查看帮助说明:aep --help 或者 aep -h