mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-27 09:32:40 +00:00
21 lines
963 B
JSON
21 lines
963 B
JSON
{
|
|
"name": "fresh",
|
|
"author": {
|
|
"name": "TJ Holowaychuk",
|
|
"email": "tj@vision-media.ca",
|
|
"url": "http://tjholowaychuk.com"
|
|
},
|
|
"description": "HTTP response freshness testing",
|
|
"version": "0.1.0",
|
|
"main": "index.js",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"mocha": "*",
|
|
"should": "*"
|
|
},
|
|
"readme": "\n# node-fresh\n\n HTTP response freshness testing\n\n## fresh(req, res)\n\n Check freshness of `req` and `res` headers.\n\n When the cache is \"fresh\" __true__ is returned,\n otherwise __false__ is returned to indicate that\n the cache is now stale.\n\n## Example:\n\n```js\nvar req = { 'if-none-match': 'tobi' };\nvar res = { 'etag': 'luna' };\nfresh(req, res);\n// => false\n\nvar req = { 'if-none-match': 'tobi' };\nvar res = { 'etag': 'tobi' };\nfresh(req, res);\n// => true\n```\n\n## Installation\n\n```\n$ npm install fresh\n```",
|
|
"readmeFilename": "Readme.md",
|
|
"_id": "fresh@0.1.0",
|
|
"_from": "fresh@0.1.0"
|
|
}
|