https://github.com/vanng822/emptygif
Empty gif for nodejs
https://github.com/vanng822/emptygif
Last synced: 5 months ago
JSON representation
Empty gif for nodejs
- Host: GitHub
- URL: https://github.com/vanng822/emptygif
- Owner: vanng822
- License: mit
- Created: 2012-10-20T10:46:25.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-05-05T10:15:30.000Z (almost 7 years ago)
- Last Synced: 2024-11-14T10:45:10.369Z (5 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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