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

generator-ldx

v1.0.5

Published

基于vue+webpack+es6的项目快速生成器

Readme

welcome to use

基于yeoman构建 vue+webpack+es6 的项目

npm链接

-   website
    -   src  #代码开发目录
        - sass   #sass目录,按照页面(模块)、通用、第三方  三个级别进行组织
            + page
            + common
            + lib
        + images   #图片资源
        - js    #JS脚本,按照page、components、lib进行组织
            + page
            + components #组件
            + lib    #第三方库 
        + html_tpl   #HTML模板(gulp处理输入目录)
        + html  #HTML(经过gulp处理输出目录 - 脚本引入目录)
    -   dist    #webpack编译打包输出目录,无需自主建立目录
        + css
        + js
        + html
    + node_modules   #所使用的nodejs模块
    + config.js 接口-域 配置文件  
    + http-url.js 接口
    + .babelrc  #bable配置
    + .gitignore  #ignore配置
    + .npmrc    #cnpm配置
    + package.json   #项目配置
    + gulpfile.js   #gulp配置
    + webpack.config.babel.js    #webpack配置(es6)
    + README.md   #项目说明

使用说明:

检查是否安装node和npm,并检查版本,若未装请移步到node进行安装,npm是Node.js的包管理工具,装好node就可以直接npm了。

node -v //检查node版本 现在一般为6.x.x

安装yeoman

npm install -g yo  

安装脚手架

npm install -g generator-ldx  

在合适的地方创建一个文件夹,在文件夹下运行:

yo ldx

然后就会在此文件夹生成目录结构。