Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
connect-favicons
Advanced tools
Serve site icons (favicon and apple-touch-icon(s)) quickly from any directory.
Serve site icons (favicon.ico and apple-touch-icon.png and all its flavours) quickly and from any directory.
npm install --save git://github.com/theworkers/connect-favicons.git
favicon.ico
favicon.png
apple-touch-icon.png
apple-touch-icon-precomposed.png
apple-touch-icon-57x57.png
apple-touch-icon-57x57-precomposed.png
apple-touch-icon-72x72.png
apple-touch-icon-72x72-precomposed.png
apple-touch-icon-76x76.png
apple-touch-icon-76x76-precomposed.png
apple-touch-icon-114x114.png
apple-touch-icon-114x114-precomposed.png
apple-touch-icon-120x120.png
apple-touch-icon-120x120-precomposed.png
apple-touch-icon-144x144.png
apple-touch-icon-144x144-precomposed.png
apple-touch-icon-152x152.png
apple-touch-icon-152x152-precomposed.png
apple-touch-icon-180x180.png
apple-touch-icon-180x180-precomposed.png
favicon-16x16.png
favicon-32x32.png
favicon-128x128.png
favicon-256x256.png
mstile-150x150.png
safari-pinned-tab.svg
Add connect-favicons to your middleware stack before everything else. The whole point here is to serve favicon.ico and apple-touch-icon.png (et al.) quickly, without involving any routing.
In this case, you may have all your site icons, including favicon.ico
in /public/img/icons
:
app.use(favicons(__dirname + '/public/img/icons'));
Now any request to the example.com/favicon.ico
or example.com/apple-touch-icon.png
will be served by Connect Favicons, reading from the folder you specified.
var http = require('http');
var path = require('path');
var express = require('express');
var favicons = require('connect-favicons');
var app = express();
// Middleware stack
app.use(favicons(__dirname + '/public/img/icons'));
app.use(express.static(path.join(__dirname, '/public')));
http.createServer(app).listen(3000, function(){
console.log("Express server listening on port " + 3000);
});
FAQs
Serve site icons (favicon and apple-touch-icon(s)) quickly from any directory.
The npm package connect-favicons receives a total of 189 weekly downloads. As such, connect-favicons popularity was classified as not popular.
We found that connect-favicons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.