1.0.3 • Published 9 years ago

http-const v1.0.3

Weekly downloads
53
License
MIT
Repository
github
Last release
9 years ago

http-const

HTTP constants: methods, protocols, headers, content types, etc.

Install

npm i -S http-const

Usage

var httpConst = require('http-const');

console.log(httpConst.methods.get); // will output GET
console.log(httpConst.protocols.http); // will output HTTP
console.log(httpConst.protocolVersions.v10); // will output HTTP/1.0
console.log(httpConst.headers.contentType); // will output Content-Type
console.log(httpConst.contentTypes.formData); // will output multipart/form-data

License

This code available under the MIT License. See License.md for details.

Authors

Alexander Mac (amatsibarov@gmail.com)