Galerie und tage
This commit is contained in:
32
node_modules/node-status-codes/readme.md
generated
vendored
Normal file
32
node_modules/node-status-codes/readme.md
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# node-status-codes [](https://travis-ci.org/sindresorhus/node-status-codes)
|
||||
|
||||
> Node.js `http.STATUS_CODES` ponyfill
|
||||
|
||||
> Ponyfill: A polyfill that doesn't overwrite the native method
|
||||
|
||||
The built-in list of HTTP status codes [differ](https://github.com/nodejs/io.js/commit/8be6060020) between Node.js versions, so this is a good way to make sure it's consistent. Will be kept up to date with latest Node.js.
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save node-status-codes
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var nodeStatusCodes = require('node-status-codes');
|
||||
|
||||
console.log(nodeStatusCodes[200]);
|
||||
//=> 'OK'
|
||||
|
||||
console.log(nodeStatusCodes[500]);
|
||||
//=> 'Internal Server Error'
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
||||
Reference in New Issue
Block a user