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.

Readme.md 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. [![Express Logo](https://i.cloudup.com/zfY6lL7eFa-3000x3000.png)](http://expressjs.com/)
  2. Fast, unopinionated, minimalist web framework for [node](http://nodejs.org).
  3. [![NPM Version](https://img.shields.io/npm/v/express.svg?style=flat)](https://www.npmjs.org/package/express)
  4. [![Build Status](https://img.shields.io/travis/strongloop/express.svg?style=flat)](https://travis-ci.org/strongloop/express)
  5. [![Coverage Status](https://img.shields.io/coveralls/strongloop/express.svg?style=flat)](https://coveralls.io/r/strongloop/express)
  6. [![Gittip](https://img.shields.io/gittip/dougwilson.svg?style=flat)](https://www.gittip.com/dougwilson/)
  7. ```js
  8. var express = require('express')
  9. var app = express()
  10. app.get('/', function (req, res) {
  11. res.send('Hello World')
  12. })
  13. app.listen(3000)
  14. ```
  15. **PROTIP** Be sure to read [Migrating from 3.x to 4.x](https://github.com/strongloop/express/wiki/Migrating-from-3.x-to-4.x) as well as [New features in 4.x](https://github.com/strongloop/express/wiki/New-features-in-4.x).
  16. ### Installation
  17. ```bash
  18. $ npm install express
  19. ```
  20. ## Quick Start
  21. The quickest way to get started with express is to utilize the executable [`express(1)`](https://github.com/expressjs/generator) to generate an application as shown below:
  22. Install the executable. The executable's major version will match Express's:
  23. ```bash
  24. $ npm install -g express-generator@4
  25. ```
  26. Create the app:
  27. ```bash
  28. $ express /tmp/foo && cd /tmp/foo
  29. ```
  30. Install dependencies:
  31. ```bash
  32. $ npm install
  33. ```
  34. Start the server:
  35. ```bash
  36. $ npm start
  37. ```
  38. ## Features
  39. * Robust routing
  40. * HTTP helpers (redirection, caching, etc)
  41. * View system supporting 14+ template engines
  42. * Content negotiation
  43. * Focus on high performance
  44. * Executable for generating applications quickly
  45. * High test coverage
  46. ## Philosophy
  47. The Express philosophy is to provide small, robust tooling for HTTP servers, making
  48. it a great solution for single page applications, web sites, hybrids, or public
  49. HTTP APIs.
  50. Express does not force you to use any specific ORM or template engine. With support for over
  51. 14 template engines via [Consolidate.js](https://github.com/visionmedia/consolidate.js),
  52. you can quickly craft your perfect framework.
  53. ## More Information
  54. * [Website and Documentation](http://expressjs.com/) - [[website repo](https://github.com/strongloop/expressjs.com)]
  55. * [Github Organization](https://github.com/expressjs) for Official Middleware & Modules
  56. * [#express](https://webchat.freenode.net/?channels=express) on freenode IRC
  57. * Visit the [Wiki](https://github.com/strongloop/express/wiki)
  58. * [Google Group](https://groups.google.com/group/express-js) for discussion
  59. * [Русскоязычная документация](http://jsman.ru/express/)
  60. * [한국어 문서](http://expressjs.kr) - [[website repo](https://github.com/Hanul/expressjs.kr)]
  61. * Run express examples [online](https://runnable.com/express)
  62. ## Viewing Examples
  63. Clone the Express repo, then install the dev dependencies to install all the example / test suite dependencies:
  64. ```bash
  65. $ git clone git://github.com/strongloop/express.git --depth 1
  66. $ cd express
  67. $ npm install
  68. ```
  69. Then run whichever example you want:
  70. $ node examples/content-negotiation
  71. You can also view live examples here:
  72. <a href="https://runnable.com/express" target="_blank"><img src="https://runnable.com/external/styles/assets/runnablebtn.png" style="width:67px;height:25px;"></a>
  73. ## Running Tests
  74. To run the test suite, first invoke the following command within the repo, installing the development dependencies:
  75. ```bash
  76. $ npm install
  77. ```
  78. Then run the tests:
  79. ```bash
  80. $ npm test
  81. ```
  82. ### Contributors
  83. * Author: [TJ Holowaychuk](https://github.com/visionmedia)
  84. * Lead Maintainer: [Douglas Christopher Wilson](https://github.com/dougwilson)
  85. * [All Contributors](https://github.com/strongloop/express/graphs/contributors)
  86. ### License
  87. [MIT](LICENSE)