pfrazee/http-template-literal

Make HTTP requests the way TBL intended.

JavaScript

215

7 commits

updated Apr 6, 2021

See the code

README

http-template-literal

Make HTTP requests the way TBL intended.

const http = require('http-template-literal')

var res = await http`
  GET https://httpbin.org/get HTTP/1.1
  Accept: application/json
`
console.log('Request one:', res.body)

var res = await http`
  POST https://httpbin.org/post HTTP/1.1
  Content-Type: application/json

  ${JSON.stringify({
    hello: 'world',
    awesome: true
  })}
`
console.log('Request two:', res.body)

Contributors

pfrazee

7 commits

pfrazee/http-template-literal

Make HTTP requests the way TBL intended.

JavaScript

215

7 commits

updated Apr 6, 2021

See the code

README

http-template-literal

Make HTTP requests the way TBL intended.

const http = require('http-template-literal')

var res = await http`
  GET https://httpbin.org/get HTTP/1.1
  Accept: application/json
`
console.log('Request one:', res.body)

var res = await http`
  POST https://httpbin.org/post HTTP/1.1
  Content-Type: application/json

  ${JSON.stringify({
    hello: 'world',
    awesome: true
  })}
`
console.log('Request two:', res.body)

Contributors

pfrazee

7 commits

Languages

JavaScript

100.0%