New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

request-info

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

request-info

Get information about an http request.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
64
increased by77.78%
Maintainers
1
Weekly downloads
 
Created
Source

request-info NPM version NPM downloads Build Status

Get information about an http request.

Install

Install with npm:

$ npm install --save request-info

Usage

var info = require('request-info');

API

info

Get information information about the given http request. Some of the adapted from https://github.com/joola/joola.io.express/blob/master/index.js#L39-L50

Params

  • req {Object}: http request object (from http or express)
  • returns {Object}: info object containing httpVersion, ip, method, referer, url, and ua (useragent information)

Example

console.log(info(req));
//=> {
//=>   httpVersion: '1.1',
//=>   ip: '127.0.0.1',
//=>   method: 'GET',
//=>   referer: 'http://localhost:8080/index.html',
//=>   url: '/',
//=>   ua: {
//=>     ua: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',
//=>     browser: { name: 'Chrome', version: '52.0.2743.116', major: '52' },
//=>     engine: { version: '537.36', name: 'WebKit' },
//=>     os: { name: 'Mac OS', version: '10.9.5' },
//=>     device: { model: undefined, vendor: undefined, type: undefined },
//=>     cpu: { architecture: undefined }
//=>   }
//=> }

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)

To generate the readme and API documentation with verb:

$ npm install -g verb verb-generate-readme && verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Brian Woodward

License

Copyright © 2016, Brian Woodward. Released under the MIT license.


This file was generated by verb-generate-readme, v0.1.30, on August 29, 2016.

Keywords

FAQs

Package last updated on 30 Aug 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc