
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
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 133 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.