Socket
Book a DemoInstallSign in
Socket

emptygif

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emptygif

For serving a 1x1p transparent gif image

0.1.2
latest
Source
npmnpm
Version published
Weekly downloads
660
6.28%
Maintainers
1
Weekly downloads
 
Created
Source

emptygif

Empty gif for nodejs

Usage example

var emptygif = require('emptygif');
var express = require('express');

app.use(emptygif.emptyGif([{path:'/erreport', maxAge: 0}]))

// OR
app.get('/tracking_pixel.gif', function(req, res, next) {
	
	process.nextTick(function() {
		// do tracking stuff
	});
	
	emptygif.sendEmptyGif(req, res, {
		'Content-Type' : 'image/gif',
		'Content-Length' : emptygif.emptyGifBufferLength,
		'Cache-Control' : 'public, max-age=0' // or specify expiry to make sure it will call everytime
	});
});

methods

emptyGif(configs)

  • configs Array of objects. Each object contain path, maxAge and callback. Path can be string or RegExp. maxAge is optional, default 86400000ms. Callback is for doing something with request such as statistics. For example:

    [{path: '/img/empty.gif', maxAge : 86400000, callback: function(req) { /* view counting code */}}]

Returns

  • function(req, res, next) middleware

sendEmptyGif(req, res, headers)

  • req Request object
  • res Response object
  • headers Headers associated with this image.

Property

emptyGifBufferLength

The length of the image in case it is needed for customed headers for sendEmptyGif

Keywords

transparent

FAQs

Package last updated on 05 May 2018

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.