New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

hawkerquest

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hawkerquest

Hawk authentication mechanism for hyperquest

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

hawkerquest

A wrapper that puts hawk in hyperquest, and still works on the browser.

Installation

npm install hawkerquest

How to use

var hawkerquest = require('hawkerquest');
// treat it like hyperquest

API

Hawk credentials

var hawkerquest = require('hawkerquest');
var credential = {
  "key": "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
  "algorithm": "sha256",
  "id": "dh37fgj492je"
};


hawkerquest('http://resource.com/endpoint', {
  hawk: credential
}).pipe(process.stdout);

Bewit

var hawkerquest = require('hawkerquest');
var bewit = 'ZGgzN2ZnajQ5MmplXDEzNzU5NzM0NzFcSFJuSTRSR0l5bitVTXRQdjJ0MzIvMXhRc2pOSWlEN0JYSGFZMnJvMkloST1c';


hawkerquest('http://resource.com/endpoint', {
  bewit: bewit
}).pipe(process.stdout);

Browser support

Clone this repository, make and then you'll find inside the build folder a bundle that attaches the hyperquest to the global object, and works on the browser. Hawks browser.js was used.

Keywords

hawk

FAQs

Package last updated on 12 Aug 2013

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