status-i18n

HTTP status and message mapping, internationalized.
Currently supported locales: de-de
, en-us
, ja-jp
, ko-kr
, zh-cn
. Add your locale like this now! 🎉
Installation
$ npm install @http-util/status-i18n
API
import status from '@http-util/status-i18n'
var status = require('@http-util/status-i18n')
status.BROWSER_LANG
Returns a lowercase string of default browser language set by user.
status.codes
Returns an array of all the status codes as Integer
s.
status[code]
Map of code
to status message
, in the same format as the Node.js http module. undefined
for invalid code
s. The language has been set to default en-us
.
status[404]
status[700]
status(code, language)
Map of code
to status message
with specific language. The default browser language is assumed to be en-us
.
status(401, 'zh-cn')
status(401, 'zh-CN')
status(401, 'zh')
status(401, status.BROWSER_LANG)
status(401)