Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/colohr/hyper

HyperText Transfer Protocol Module
https://github.com/colohr/hyper

Last synced: about 2 months ago
JSON representation

HyperText Transfer Protocol Module

Awesome Lists containing this project

README

        

Hyper
-----------------------------
The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, and hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web

Feedback:
----------------

```js
const hyper = require('hyper')
hyper.get(url).then(({
base64, //() => Base64 encoded text
buffer, //(from_type='uft8') => Buffer
json, //() => JSON object
text //()=> text
})=>{

const data = json()

})
```