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

koa2-file-middle

v1.0.3

Published

Static file middle for koa2.

Downloads

4

Readme

Koa2 File Middle

A middleware for static file. Filter multi path for static router.

How to use

  • Install it:
    npm install koa2-file-middle --save
  • Use it:
    It can simply use like this.
    var koa = require("koa");
    var koaFileMiddle = require("koa2-file-middle");
    
    var app = new koa();
    app.use(koaFileMiddle(["./static", "./public"], {
    	debug: true
    }));
    
    app.listen("9090");

How to test

Just run this command after the dependencies have installed:

jasmine

Options

The supported options as follow:
prefix : String
Prefix for uri, when matching, delivery prefix from uri. for example, set to /static, and a request path is /static/index.js, the final matching uri will be /index.js;

index: String | Array
When handle the slash ending uri, adding the index string to the uri. Such as, set to ["index.html", "index.htm"], and a request's path is /json/, the final matching uri will be ["/json/index.html", "/json/index.htm"].

extension: String | Array
When handle the uri(not ending with slash), the extension will be appended to the matching queue. Such as, set to .html, and a request's path is ``/json/index, the final mathing uri will be ["/json/index", "/json/index.html"]`.

cache : true | false, default false.
Whether to cache all the file pathes in memory, which will make the matching operation faster. It's useful for production.

maxAge(maxage): number, default 0.
Whether to set the cache-control header of max-age to response. if it is greater than 0, flush the header of cache(both expires and cache-control) to response.

lastModified: true | false, default false.
Whether to check the request header if-modified-since. It's useful for production.

etag: true | false, default false.
Whether to check the request header if-none-match. It's useful for production.

hide: true | false, default false.
Whether to expose the hidden file to outside world. True for exposing.

onBefore: function
function(matchingArray, ctx), matchingArray is the matching array for matching, it will be mactched one by one. return value: if the return value is false, it will stop the matching process and chain to next the middle ware.

onSuccess: function
function(matchObject, ctx), handle success.

onFail: function
function(matchingArray, ctx), handle fail.

app.use({
	// ...
	onBefore: function(list, ctx){
		var item = list[0];
		if(item && item.indexOf("ver.js")){
			list.splice(0, 0, item.replace("ver.js", "new_ver.js"));
		}
		// append new_ver.js before ver.js
	},
	onSuccess: function(match, ctx){

	},
	onFail: function(list, ctx){

	}
	// ...
})

LICENCE

MIT