0.0.13-beta • Published 8 years ago

kip v0.0.13-beta

Weekly downloads
37
License
-
Repository
github
Last release
8 years ago

kip

features

  • automatic content-type negotiation
  • gzip/deflate support
  • adjustable maxage/expires
  • fs.stat cached and monitored to update on fs changes
  • adjustable file cache size
  • cache monitors file changes and updates his contents
  • content always streamed - except when in cache
  • ignored files (.gitignore/.npmignore style)
  • middleware compatible
  • cli tool

install

$ npm install [-g] kip

use the -g option to use it as a cli tool

cli

$ kip
Usage:

    kip <root> <options>

Options:

    -c cache size default: 10mb
    -ma maxage/expires default: 0s
$ kip ./public
kip started at http://lvh.me:64761
  -c 10485760b
  -ma 0s

api

kip(root, opts)

var kip = require('kip')
var file = kip(__dirname, {cache: '10mb', maxage: 3600})

require('http').createServer(function (req, res) {
  file(req, res, function () {
    res.statusCode = 404
    res.end()
  })
}).listen(1337)

opts

  • cache: amount of data (in bytes) stored in the file cache
  • maxage: amount of time (in seconds) to set the maxage/expires header

license

Copyright (C) 2012 Sérgio Ramos mail@sergioramos.me

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.0.13-beta

8 years ago

0.0.12-beta

8 years ago

0.0.11-beta

8 years ago

0.0.10-beta

8 years ago

0.0.9-beta

8 years ago

0.0.8-beta

8 years ago

0.0.7-beta

8 years ago

0.0.5-beta

8 years ago

0.0.4-beta

8 years ago

0.0.3-beta

8 years ago

0.0.2-alpha

8 years ago

0.0.1-alpha

8 years ago

0.0.13beta

11 years ago

0.0.12beta

11 years ago

0.0.11beta

11 years ago

0.0.10beta

11 years ago

0.0.9beta

11 years ago

0.0.8beta

11 years ago

0.0.7beta

12 years ago

0.0.5beta

12 years ago

0.0.4beta

12 years ago

0.0.3beta

12 years ago

0.0.2alpha

12 years ago

0.0.1alpha

12 years ago