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

fedog

v1.1.5

Published

A small fe compile

Downloads

92

Readme

前端🐶专用开发工具

===

//依赖
npm install -g typescript
gem install compass

//fedog
npm install -g fedog

===

依赖node版本: node 6.0.0以上

支持功能:
一、编译
  jade      //默认.jade文件会被编译为.html文件,如果为.tpl.jade,则会编译为.tpl文件。
  markdown
  typescript //需要全局安装npm install -g typescript
  commonjs
  compass   //需要提前安装http://compass-style.org/

二、压缩
  js
  css

三、静态资源加版本号

四、自带server

===

主要命令:
一、server
  fedog server start //开启server服务
  fedog server open  //打开server目录
  fedog server clean //清空server目录

二、release
  fedog release [case] //执行release, case为fedog.json中描述

===

工程根目录需要fedog.json文件,内容如下
{
    "server": {
        "port": 8080    //server监听的端口
    },
    "release": {
        "project": "",  //项目名,会加到被引用的资源前
        "domain": "",   //域名,会加到被引用的资源前
        "cases": {
            "dev": {
                "optimize": false,
                "version": true,
                "watch": true,

                //常量注入
                //js里使用:let a = "@{FEDOG.aa}" => let a = "aaaa"
                //jade里使用: #{FEDOG.aa}
                "env": {    
                    "aa": "aaaa",
                    "bb": "bbbb",
                    "a": "cc"
                }
            },
            "qa": {
                "optimize": true, //是否压缩,默认false
                "version": true,  //是否加版本号,默认false
                "watch": false,   //是否watch,默认false
                "domain": true    //是否启用域名,默认false
                "www": "../www"   //处理过的资源目标地址,默认为/Users/${user}/.fedog-tmp/www
            }
        },
        // 设置文件原样复制,中间不做任何处理
        "copy": [
            "**/*.min.js",
            "static/script/copy/**/*"
        ],
        // 设置文件忽略
        "ignore": [
            "static/script/ignore/**/*",
            "config.rb",
            "fedog.json",
            "tsconfig.json",
            "run.py"
        ]
    }
}