transparent-pixel

1.0.0 • Public • Published

transparent-pixel

One transparent pixel

Serve a transparent pixel with express.js:

const express = require('express');
const pixel = require('transparent-pixel');
 
const app = express();
 
app.get('/pixel/:metric', (request, response) => {
    report(request.params.metric); // your own logic
 
    response
        .status(201)
        .type('gif')
        .send(pixel);
});

/transparent-pixel/

    Package Sidebar

    Install

    npm i transparent-pixel

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    1.32 kB

    Total Files

    3

    Last publish

    Collaborators

    • omrilotan