0.0.26 • Published 10 years ago

quick-command-serve v0.0.26

Weekly downloads
106
License
-
Repository
github
Last release
10 years ago

quick-command-serve

启动一个本地静态资源服务器,支持combo

Install

请直接安装quickjs
$ npm install quickjs -g
如果你安装了taobao的代理镜像
$ cnpm install quickjs -g 

Usage

Usage: quick serve [options]

Options:

  -r, --root <path>       set listen root
  -p, --port <port>        set listen port

Default qconf

serve:{
    //监听路径
    root:"//默认为当前命令行路径",
    //监听端口
    port:2000,
    //执行wrap条件,用户可覆盖此默认配置
    rules : function(pathname,ext){
        return pathname.indexOf('static/page') != -1 && ext == 'js';
    },
    //wrap转换器,用户可覆盖或修改默认配置
    transfer: { 
        js: function(content) {
            return [
                'define(function(require, exports, module) {\n',
                content,
                '\n});'
            ].join('');
        },
        tpl:function(content){
            return this.js("return '"+content.replace(/\s/g,' ')+"'");
        }
    },
    mine: { //mine类型
        "css": "text/css",
        "gif": "image/gif",
        "html": "text/html",
        "ico": "image/x-icon",
        "jpeg": "image/jpeg",
        "jpg": "image/jpeg",
        "js": "text/javascript",
        "json": "application/json",
        "pdf": "application/pdf",
        "png": "image/png",
        "svg": "image/svg+xml",
        "swf": "application/x-shockwave-flash",
        "tiff": "image/tiff",
        "txt": "text/plain",
        "wav": "audio/x-wav",
        "wma": "audio/x-ms-wma",
        "wmv": "video/x-ms-wmv",
        "xml": "text/xml"
    }
}

Diy

可自定义任何选项,任何选项都是可选的

More

Please See source code

lib/default_conf.js

Github

https://github.com/dreamstu/quick-command-serve.git

0.0.26

10 years ago

0.0.25

10 years ago

0.0.24

10 years ago

0.0.23

10 years ago

0.0.22

10 years ago

0.0.21

10 years ago

0.0.20

10 years ago

0.0.19

10 years ago

0.0.18

10 years ago

0.0.17

10 years ago

0.0.16

10 years ago

0.0.15

10 years ago

0.0.14

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago