-
NPM模块node-http-code-parser将HTTP状态代码转换为更具价值的信息
资源介绍
HTTP代码解析器
NPM模块将HTTP状态代码解析为更有用的东西。
安装
npm install http - code - parser
用法
跑步:
var http_code_parser = require ( 'http-code-parser' ) ;
var Status = http_code_parser . parse ( 201 ) ;
结果是:
{
success : true ,
error : false ,
redirect : false ,
friendly : 'Created' ,
code : 201 ,
type : "success"
}