![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
The npm package service-request-client receives a total of 3 weekly downloads. As such, service-request-client popularity was classified as not popular.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.