npm install @axetroy/http-status
!License

!Node

!Size
Get http status
``bash`
npm isntall @axetroy/http-status --save
`javascript
const httpStatus = require('@axetroy/http-status');
console.log(httpStatus.OK.code); // 200
console.log(+httpStatus.OK); // 200
console.log(httpStatus.OK.message); // OK
console.log(httpStatus.OK + ""); // OK
``
