Gathering detailed insights and metrics for @zhennann/koa-static-cache
Gathering detailed insights and metrics for @zhennann/koa-static-cache
npm install @zhennann/koa-static-cache
Typescript
Module System
Min. Node Version
Node Version
NPM Version
68.8
Supply Chain
98.8
Quality
74.5
Maintenance
100
Vulnerability
100
License
JavaScript (97.24%)
Makefile (2.76%)
Total Downloads
14,284
Last Day
3
Last Week
4
Last Month
17
Last Year
203
293 Stars
160 Commits
47 Forks
14 Watching
3 Branches
33 Contributors
Minified
Minified + Gzipped
Latest Version
5.1.8
Package Id
@zhennann/koa-static-cache@5.1.8
Unpacked Size
17.06 kB
Size
6.30 kB
File Count
4
NPM Version
6.14.8
Node Version
12.15.0
Cumulative downloads
Total Downloads
Last day
0%
3
Compared to previous day
Last week
0%
4
Compared to previous week
Last month
325%
17
Compared to previous month
Last year
-94.7%
203
Compared to previous year
5
Static server for koa.
Differences between this library and other libraries such as static:
index.html
support.1$ npm install koa-static-cache
1var path = require('path') 2var staticCache = require('koa-static-cache') 3 4app.use(staticCache(path.join(__dirname, 'public'), { 5 maxAge: 365 * 24 * 60 * 60 6}))
dir
(str) - the directory you wish to serve, priority than options.dir
.options.dir
(str) - the directory you wish to serve, default to process.cwd
.options.maxAge
(int) - cache control max age for the files, 0
by default.options.cacheControl
(str) - optional cache control header. Overrides options.maxAge
.options.buffer
(bool) - store the files in memory instead of streaming from the filesystem on each request.options.gzip
(bool) - when request's accept-encoding include gzip, files will compressed by gzip.options.usePrecompiledGzip
(bool) - try use gzip files, loaded from disk, like nginx gzip_staticoptions.alias
(obj) - object map of aliases. See below.options.prefix
(str) - the url prefix you wish to add, default to ''
.options.dynamic
(bool) - dynamic load file which not cached on initialization.options.filter
(function | array) - filter files at init dir, for example - skip non build (source) files. If array set - allow only listed filesoptions.preload
(bool) - caches the assets on initialization or not, default to true
. always work together with options.dynamic
.options.files
(obj) - optional files object. See below.files
(obj) - optional files object. See below.For example, if you have this alias object:
1{ 2 '/favicon.png': '/favicon-32.png' 3}
Then requests to /favicon.png
will actually return /favicon-32.png
without redirects or anything.
This is particularly important when serving favicons as you don't want to store duplicate images.
You can pass in an optional files object. This allows you to do two things:
Instead of doing:
1app.use(staticCache('/public/js')) 2app.use(staticCache('/public/css'))
You can do this:
1var files = {}
2
3// Mount the middleware
4app.use(staticCache('/public/js', {}, files))
5
6// Add additional files
7staticCache('/public/css', {}, files)
The benefit is that you'll have one less function added to the stack as well as doing one hash lookup instead of two.
For example, if you want to change the max age of /package.json
, you can do the following:
1var files = {} 2 3app.use(staticCache('/public', { 4 maxAge: 60 * 60 * 24 * 365 5}, files)) 6 7files['/package.json'].maxAge = 60 * 60 * 24 * 30
You can pass in a lru cache instance which has tow methods: get(key)
and set(key, value)
.
1var LRU = require('lru-cache')
2var files = new LRU({ max: 1000 })
3
4app.use(staticCache({
5 dir: '/public',
6 dynamic: true,
7 files: files
8}))
The MIT License (MIT)
Copyright (c) 2013 Jonathan Ong me@jongleberry.com
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.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
Found 12/30 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More