http-700

0.2.2 • Public • Published

HTTP 700

Based on this fantastic RFC proposal. Intended for use with express.

Example usage

A basic usage example.

const express = require('express');
const http700 = require('http-700');
const app = express();
const port = 3000;
 
app.get('/', (req, res) => {
  http700.setFor(res, 701);
  res.send('Hello World!');
});
 
app.listen(port, () => console.log(`Listening on port ${port}!`));

NOTE: Make sure to send a response (as this package does not do that automatically).

Package Sidebar

Install

npm i http-700

Weekly Downloads

2

Version

0.2.2

License

MIT

Unpacked Size

4.43 kB

Total Files

7

Last publish

Collaborators

  • devmaximilian