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

qjd-pages

v1.0.3

Published

一个pagescli工具 ## 安装 ```bash npm i qjd-pages ``` ## 使用 ```json { "scripts": { "dev": "qjd-pages dev", "build": "qjd-pages build", "clean": "qjd-pages clean" } } ``` + 开发环境:使用dev命令创建一个开发环境 + 生产环境:使用build命令打包 + 清除:使用clean 清除产出的文件

Downloads

5

Readme

qjd-pages

一个pagescli工具

安装

npm i qjd-pages

使用

{
  "scripts": {
      "dev": "qjd-pages dev",
      "build": "qjd-pages build",
      "clean": "qjd-pages clean"
  }
}
  • 开发环境:使用dev命令创建一个开发环境
  • 生产环境:使用build命令打包
  • 清除:使用clean 清除产出的文件

需要安装下述的目录创建项目,否则讲无法正常进行构建

演示目录结构

  • 默认源代码放在根目录中的src文件中
  • assets 存放静态目录
    • fonts存放字体文件
    • images存放图片
    • scripts存放js文件
    • styles 存放样式文件,目前只支持了scss编译
  • html 可以在src的任意地方放置html
src
├── about.html
├── assets
│   ├── fonts
│   │   ├── pages.eot
│   │   ├── pages.svg
│   │   ├── pages.ttf
│   │   └── pages.woff
│   ├── images
│   │   ├── brands.svg
│   │   └── logo.png
│   ├── scripts
│   │   └── main.js
│   └── styles
│       ├── _icons.scss
│       ├── _variables.scss
│       ├── demo.scss
│       └── main.scss
├── features.html
├── index.html
├── layouts
│   └── basic.html
└── partials
    ├── footer.html
    ├── header.html
    └── tags.html

可以使用下述配置来对源代码目录进行配置,如修改源代码的目录

配置

// 新建 page.config.js
module.exports = {
    data: {}, // 需要传递给html的参数 可以用于模板引擎swig的使用
    // 默认配置在下方
    build: {
        src: "src", // 可以修改源代码存放位置
        dist: "release", // 打包产出的目标文件名称
        temp: ".temp", // 临时托管文件
        public: "public", // 不参与构建的文件
        // 静态资源存放默认配置,默认存放在src下的assets中
        // 其中html为src中的全目录
        paths: {
            styles: "assets/styles/*.scss",
            scripts: "assets/scripts/*.js",
            pages: "*.html",
            images: "assets/images/**",
            fonts: "assets/fonts/**"
        }
    }
};