
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
service-request-client
Advanced tools
An extension to request to facilitate making requests against discoverable HTTP services
Utility module for making HTTP requests against discoverable HTTP services.
Supported service discovery technologies include:
The following is the most basic example of a Container DNS client:
'use strict';
const Client = require('service-request-client').ContainerDNSClient;
// Instantiate a client
const client = new Client(
'service-name',
8001,
'my/service/path/v1',
{
verbose: true,
retries: 2,
timeoutMs: 3000,
correlationHeaderName: 'X-Unity-CorrelationID'
}
);
const query = {
"myParam": "myValue"
};
const headers = {
"Content-Type": "application/json"
};
const body = {
"prop1": "value1",
"prop2": "value2"
};
// Invoke a GET request against the service endpoint (promise style)
client.get('item/search', { query, headers })
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a GET request against the service endpoint (async/await style)
let res;
try {
res = await client.get('item/search', { query, headers });
console.log(res.body);
} catch (err) {
console.log(err);
}
// Invoke a PUT request against the service
client.put('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a POST request against the service
client.post('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a DELETE request against the service
client.delete('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a GET request against the service
client.method('GET', 'item/search', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
The following is the most basic example of a Host Port client:
'use strict';
const Client = require('service-request-client').HostPortClient;
// Instantiate a client
const client = new Client(
'api.test.io',
80,
'v1',
{
verbose: true,
retries: 2,
timeoutMs: 3000
}
);
const query = {
"myParam": "myValue"
};
const headers = {
"Content-Type": "application/json"
};
const body = {
"prop1": "value1",
"prop2": "value2"
};
// Invoke a GET request against the service endpoint (promise style)
client.get('item/search', { query, headers })
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a GET request against the service endpoint (async/await style)
let res;
try {
res = await client.get('item/search', { query, headers });
console.log(res.body);
} catch (err) {
console.log(err);
}
// Invoke a PUT request against the service
client.put('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a POST request against the service
client.post('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a DELETE request against the service
client.delete('item', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
// Invoke a GET request against the service
client.method('GET', 'item/search', { query, headers }, body)
.then(res => console.log(res.body))
.catch(err => console.log(err));
FAQs
An extension to request to facilitate making requests against discoverable HTTP services
We found that service-request-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.