npm.io
4.6.1 • Published 2 weeks ago

bare-http1

Licence
Apache-2.0
Version
4.6.1
Deps
0
Vulns
0
Weekly
0
Stars
5

bare-http1

HTTP/1 library for JavaScript.

npm i bare-http1

Usage

const http = require('bare-http1')

const server = http.createServer((req, res) => {
  res.statusCode = 200
  res.setHeader('Content-Length', 10)
  res.write('hello world!')
  res.end()
})

server.listen(0, () => {
  const { port } = server.address()
  console.log('server is bound on', port)

  const client = http.request({ port }, (res) => {
    res.on('data', (data) => console.log(data.toString()))
  })
  client.end()
})

API

See the bare-http1 reference.

License

Apache-2.0