req.protocol

The protocol used to send this request (req).

Usage

req.protocol;

Example

switch (req.protocol) {
  case 'http':
    // this is an HTTP request
    break;
  case 'https':
    // this is a secure HTTPS request
    break;
}