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

xmly

v1.1.4

Published

前端构架工具,h5和pc脚手架

Downloads

7

Readme

前端h5脚手架 🚌

安装

需要 Npm 和 Node 环境

npm install xmly -g

使用

// 生成h5脚手架
xmly init

案例

├── dev
│   ├── css
│   │   ├──  public.css
│   │   ├──  reset.css
│   │   └──  style.css
│   ├── js
│   │   ├── lib
│   │   │   ├── jquery.min.js
│   │   │   └── jquerySuperSlide.js
│   │   ├── page.js
│   │   └── index.js
│   ├── scss
│   │   ├── icon.scss
│   │   ├── public.scss
│   │   └── style.scss
│   └── images
├── release
│   ├── css
│   |   └── style.min.css
│   ├── js
│   |   └── page.min.js
│   └── images
│       └── ...
├── tool
│   ├── gulpfile.js
│   ├── package.json
│   └── scss.handlebars
├── index.html
└── xmly.config.js

解析

dev 和 release

区分为两个环境:

  1. dev 环境
  • css文件夹不管,包含reset.css
  • scss文件主要是开发时候用的(style为自定义,public为公共,icon为图标)
  • js文件(lib下为默认的jquery和superslide插件,page为默认的计算rem,可以根据设计稿自定义,index为自定义交互文件)
  1. release 环境
  • 构建为3个文件 (css,js,images) 

tool

基于gulp打包构建的文件

cd tool
npm install
npm run start

执行以上即可开启3000端口服务器,修改dev相关文件会触发热加载

index.html

初始化的页面,引入release打包压缩的文件(直接生产目录获取)

xmly.config.js

gulp的配置文件

gulp参考文档

imagemin

image图片压缩处理任务

参考文档

sass

sass编译

参考文档

jsconcat

js压缩合并

参考文档

spritesmith

自动化雪碧图任务

参考文档

cssmin

css压缩任务处理

参考文档

browserSync

同步测试助手

参考文档

License

MIT

写在后面

找个时间重构... 😂