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

@testlio/discovered-request

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

@testlio/discovered-request

Helper library for making http requests through discovery

  • 1.1.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Discovered-request

Helper library for making requests through discovery.

It will make discovery request to get the location of the resource you want to call and then call it. Library uses request-promise to make actual http requests. All the request options (except 'servicePath' and 'api') are the same as in request-promise. For more information how to build your request look at request-promise.

##Installation

npm install @testlio/discovered-request

Usage

Lets call resource browsers in service named browser and at version 1. ServicePath: browser.v1.browsers

'use strict';

const request = require('@testlio/discovered-request');

const options = {
    servicePath: 'browser.v1.browsers',
    headers: {
        'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
    },
    json: true
};

request(options).then((result) => {
    console.log(result);
}).catch((err) => {
    console.log('Request failed');
    console.log(err);
});

Usage without discovery

'use strict';

const request = require('@testlio/discovered-request');

const options = {
    url: 'http://testlio.com'
};

request(options).then((result) => {
    console.log(result);
}).catch((err) => {
    console.log('Request failed');
    console.log(err);
});

Request only discovery

Returns the result of the resource discovery request of the specified service and version.

'use strict';

const request = require('@testlio/discovered-request');

const options = {
    servicePath: 'browser.v1',
    json: true,
    headers: {
        Authorization: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
    }
};


request(options).then((result) => {
    console.log(result);
}).catch((err) => {
    console.log('Request failed');
    console.log(err);
});

Changing API location

Use the api option to change the base API location. If api is undefined then the default value is used instead (currently set to https://api.testlio.com

'use strict';

const request = require('@testlio/discovered-request');

const options = {
    api: 'http://local.testlio',
    servicePath: 'browser.v1.browsers',
    headers: {
        'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJ0QHRlc3RsaW8uY29tIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.tMRlQfy2e1I0kfqrSJraPbBqgGnmIVrXj8ks-WBEJLg'
    },
    json: true
};

request(options).then((result) => {
    console.log(result);
}).catch((err) => {
    console.log('Request failed');
    console.log(err);
});

Changing 'Promise' dependency

If your environment doesn't support new Promise you need to define promise dependency by yourself.

const request = require('@testlio/discovered-request');
request.setPromisesDependency(require('Bluebird'));

Keywords

FAQs

Package last updated on 24 Sep 2019

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