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

generator-frontman

v0.3.10

Published

Yeoman generator

Downloads

10

Readme

frontman前端手脚架模板

简介

frontman

frontman的目的是快速构建前端开发项目所需要的工具及基础配置,前端开发人员可以使用yo frontman命令生成基本项目框架后,再根据项目实际情况对配置进行调整。

快速开始

系统需要安装nodejsYeoman工作套件(yo, Bower, Gulp)

安装node,yo,bower,gulp

nodejs可以到官网下载对应系统安装包

nodejs官网

安装完nodejs后默认安装上npm包管理工具

npm -v

在命令提示行中输入检查npm包是否已安装

安装bower

npm i bower -g

安装yo

npm i yo -g

安装 gulp

npm i gulp -g

安装generator-frontman

npm install generator-frontman -g

安装完成后,可在任何目录下使用yo frontman

新建项目

如在E:/github目录新建项目myproject

打开E盘下的github目录,使用快捷键shift+鼠标右键,点击在此处打开命令窗口

新建project目录及切换到该目录

mkdir project && cd project

此命令为windows,文档均为windows下操作

frontman 初始化通用项目手脚架

yo frontman

中间可输入配置,比如项目名称,作者等,可默认直接回车不填。

然后等待npm install安装和bower install安装

如果不需要直接安装依赖npm包和bower包,可使用命令 yo frontman --skip-install

项目启动开发环境

等待npmbower包安装完成后,键入

gulp

可启动服务环境,浏览器自动打开预览地址

构建环境自动编译less

针对不同项目,需要开发者自己进行配置修改

发布到svn目录

gulp svn

扩展阅读

使用frontui

通过bower install frontui 到本地

更新frontui

bower update frontui

在使用frontui时需要注意frontui文件的路径

待定

创建H5类型项目

yo frontman:mobile