Socket
Socket
Sign inDemoInstall

prepare-response

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prepare-response

Prepare a text resposne to be efficiently sent


Version published
Weekly downloads
1.7K
decreased by-20.7%
Maintainers
1
Weekly downloads
 
Created
Source

prepare-response

Prepare a text resposne to be efficiently sent. This is useful when you want to completly cache a specific response in memory and handle etags and gzip.

Build Status Dependency Status NPM version

Installation

npm install prepare-response

Usage

Exports a function with the signature prepare(body, headers), where body is a Buffer or String and headers is an Object.

var express = require('express');
var prepare = require('prepare-response');

var app = express();

var html = prepare('<!DOCTYPE html><html></html>', {'content-type': 'html'});
var script = prepare('alert("foo");', {'content-type': 'js', 'cache-control': '1 year'});

app.get('/', function (req, res, next) {
  html.send(req, res, next);
});
app.get('/client.js', function (req, res, next) {
  script.send(req, res, next);
});

All headers are passed through as is, except cache-control and content-type.

  • cache-control - If you pass a number in milliseconds, or a string in the format accepted by ms it will be converted to the appropriate public cache header.
  • content-type - If you don't pass a valid content-type, it will be looked up using mime.

License

MIT

FAQs

Package last updated on 21 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc