express-spider-middleware
An ExpressJS middleware for detecting search engine crawlers and spiders, with the option of including a callback to perform additional search engine-specific logic such as logging or monitoring.
This module is a fork of Michael Heuberger's spider-detector. We use this module at Wethrift.com to handle additional logging and monitoring of search engine crawlers.
Install
npm install express-spider-middleware
User-agent string detector
Detect whether any user-agent string matches a known crawler or bot.
var detector = detector // return true
ExpressJS middleware - Detecting crawlers
Use as an ExpressJS middleware to attach an isSpider
property to every request.
var expressSpiderMiddleware = express = app = app app
Using a callback to handle additional logic for all requests
The .middleware()
method accepts an optional callback function that will execute for all routes when a crawler is detected.
app