Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fresh",
  3. "description": "HTTP response freshness testing",
  4. "version": "0.2.4",
  5. "author": {
  6. "name": "TJ Holowaychuk",
  7. "email": "tj@vision-media.ca",
  8. "url": "http://tjholowaychuk.com"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "fresh",
  13. "http",
  14. "conditional",
  15. "cache"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/jshttp/fresh"
  20. },
  21. "devDependencies": {
  22. "istanbul": "0",
  23. "mocha": "1",
  24. "should": "3"
  25. },
  26. "files": [
  27. "HISTORY.md",
  28. "LICENSE",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "test": "mocha --reporter spec --require should",
  36. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --require should",
  37. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --require should"
  38. },
  39. "readme": "# fresh\n\n[![NPM Version][npm-image]][npm-url]\n[![NPM Downloads][downloads-image]][downloads-url]\n[![Node.js Version][node-version-image]][node-version-url]\n[![Build Status][travis-image]][travis-url]\n[![Test Coverage][coveralls-image]][coveralls-url]\n\nHTTP response freshness testing\n\n## Installation\n\n```\n$ npm install fresh\n```\n\n## API\n\n```js\nvar fresh = require('fresh')\n```\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## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/fresh.svg?style=flat\n[npm-url]: https://npmjs.org/package/fresh\n[node-version-image]: https://img.shields.io/badge/node.js-%3E%3D_0.6-brightgreen.svg?style=flat\n[node-version-url]: http://nodejs.org/download/\n[travis-image]: https://img.shields.io/travis/jshttp/fresh.svg?style=flat\n[travis-url]: https://travis-ci.org/jshttp/fresh\n[coveralls-image]: https://img.shields.io/coveralls/jshttp/fresh.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/jshttp/fresh?branch=master\n[downloads-image]: https://img.shields.io/npm/dm/fresh.svg?style=flat\n[downloads-url]: https://npmjs.org/package/fresh\n",
  40. "readmeFilename": "README.md",
  41. "bugs": {
  42. "url": "https://github.com/jshttp/fresh/issues"
  43. },
  44. "_id": "fresh@0.2.4",
  45. "_from": "fresh@0.2.4"
  46. }