Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mithril-global-request-headers-extended

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mithril-global-request-headers-extended

A simple module for adding global headers to xhr in mithril

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

mithril-global-request-headers

A simple (POC) module for adding global http headers support to m.request.

Eg

Init

require('mithril-global-request-headers')(m)

Add a header

require('mithril-global-request-headers')(m)

m.addGlobalHeader('authorization', 'key...')

Remove headers

require('mithril-global-request-headers')(m)

m.addGlobalHeader('authorization', 'key...')
m.removeGlobalHeader('authorization', 'key...') // Remove exact

m.addGlobalHeader('authorization', 'key...')
m.removeGlobalHeader('authorization') // Remove based on key match

Access all configured headers

require('mithril-global-request-headers')(m)

m.getGlobalHeaders()

Don't add global headers to a single request

require('mithril-global-request-headers')(m)

m.request({ disableGlobalHeaders: true, ... })

Keywords

FAQs

Package last updated on 13 Jun 2017

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