diff --git a/Readme.md b/Readme.md
index e90c5ba..44fcd5d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,4 +1,5 @@
-![module info](https://nodei.co/npm/@gm5/response.png?downloads=true&downloadRank=true&stars=true)
+![downloads](https://img.shields.io/npm/dt/@gm5/response.svg)
+![version](https://img.shields.io/npm/v/@gm5/response.svg)
# @gm5/response
@@ -20,181 +21,8 @@ http
.createServer((req, res) => {
let response = new Response(req, res)
- // it eq. argument res
- console.log(response.res)
-
- response.set('content-type', 'text/html; charset=utf-8')
- response.end('hello world')
+ response.type = 'html'
+ response.body = '
hello world
'
})
.listen(3000)
-```
-
-## API
-
-
-### origin
-> 返回原始的 request & response 对象.
-
-
-
-### error(msg[, code])
-
-* msg ``
-* code `` Http状态码 [可选]
-
-> 在客户端(浏览器)上输出友好的错误信息格式
-
-```javascript
-response.error('This is the error code', 500) //
-response.error(null, 500) // null/empty, it will call the statusText back
-response.error('Page not Found', 404) //
-response.error(new Error('Auth denied'), 401) //
-```
-
-### status(code)
-
-* code ``
-
-> 设置Http状态码
-
-```javascript
-response.setStatus(501) //
-response.setStatus(200) //
-```
-
-### set(key[, val])
-
-* key `` | `