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

killl

v1.0.7

Published

kil is a tool based on nodejs and webpack, it helps improve the develop, test and release on web apps

Downloads

15

Readme

killl

webpack脚手架,hot-dev-server,build。 主要使用package.json文件配置,支持vue1.0。
vue2.0的脚手架请前往heyui/hey-cli
不需要理解webpack,只需要知道如何配置就可以使用。
支持es6,热替换,反向代理。

安装

npm install -g killl

配置

在package.json中添加属性:

"kil": {
    //端口号
    "port": 9002,

    //webpack相关配置    
    "webpack": {
      //公开path
      "publicPath": "/", 

      "output": {
        //输出哪些文件,主要是html,默认会加载和html文件名一样的js文件为入口。支持定义公用包。
        "./*.html": {
          "commons": [
            "common"
          ]
        }
      },

      //公共包定义,可以定义多个
      "commonTrunk": {
        "common": [
          "jquery",
          "vue",
          "vuex",
          "manba",
          "./js/plugin/model/model",
          "./js/common/log",
          "./js/common/control",
          "./js/common.js",
          "./js/plugin/plugin.js",
          "./js/plugin/uploader/qiniu",
          "lightbox2",
          "tooltipster",
          "./js/directives_html",
          "./js/directives",
          "jsoneditor"
        ]
      },

      //定义假名
      "resolve": {
        "alias": {}
      },

      //定义全局变量
      "global": {
        "Vue": "vue",
        "$": "jquery",
        "log": "./js/common/log",
        "Common": "./js/common.js",
        "Control": "./js/common/control",
        "jQuery": "jquery",
        "Model": "./js/plugin/model/model",
        "Plugin": "./js/plugin/plugin.js",
        "Qiniu": "./js/plugin/uploader/qiniu"
      },

      //定义反向代理服务器
      "devServer": {
        "proxy": {
          //设定/api开头的url向定义的接口请求
          "/api": {
            "target": "http://yoda:9000"
          }
        }
      }
    },

    //未做关联引用的文件在build的时候复制到打包的文件夹中
    "copy": [
      "./images/**/*",
      "./help/**/*",
      "./template/**/*"
    ]
}

反向代理可以配置pathRewrite,具体请前往Document

执行

启动webpack服务器

killl dev

打包项目,支持hash文件,按需加载。

killl build

本项目Forked from lovelypig5/kil