
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@redhat-cloud-services/host-inventory-client
Advanced tools
If you want to use [RedHatInsights/host-inventory](https://github.com/RedHatInsights/host-inventory) you shouldn't use get requests directly, but rather use this client to integrate with this service.
If you want to use RedHatInsights/host-inventory you shouldn't use get requests directly, but rather use this client to integrate with this service.
NPM
npm install --save @redhat-cloud-services/host-inventory-client
Or Yarn
yarn add @redhat-cloud-services/host-inventory-client
This client is using typescript and axios. Types are distributed with this package, so no need to define or install them separately.
This package comes with a client in its api.ts already defined with every call available.
`import host-inventoryClient from '@redhat-cloud-services/javascript-clients-shared/utils';
host-inventoryClient.someEndpoint();
To bootstrap this API manually, you should create your own client via the APIFactory defined in the @redhat-cloud-services/javascript-clients-shared package. See below for an example:
import APIFactory from '@redhat-cloud-services/javascript-clients-shared/utils';
import exampleEndpoint from '@redhat-cloud-services/host-inventory-client/ExampleEndpoint';
// BASE_PATH should be set in your constants file
const hostInventoryApi = APIFactory(BASE_PATH, undefined, { exampleEndpoint });
export hostInventoryApi;
If you want to add some interceptors you can use axios build in interceptors
import axios from 'axios';
import APIFactory from '@redhat-cloud-services/javascript-clients-shared/utils';
import exampleEndpoint from '@redhat-cloud-services/host-inventory-client/ExampleEndpoint';
const instance = axios.create();
// Request interceptor
instance.interceptors.request.use((request) => {
// some logic to do with request
});
// Response interceptor
instance.interceptors.response.use((response) => {
// some logic to do with request
});
// Error interceptor
instance.interceptors.response.use(null, (error) => {
// some logic to do with error
});
// BASE_PATH should be set in your constants file
const hostInventoryApi = APIFactory(BASE_PATH, instance, { exampleEndpoint });
export hostInventoryApi;
Ensure you have the javascript-clients generator built first with npm run build:generator. Then, run nx run @redhat-cloud-services/host-inventory-client:generate to generate the package.
Run nx run @redhat-cloud-services/host-inventory-client:build to build the package. This creates the dist for publishing.
Run nx run @redhat-cloud-services/host-inventory-client:test to execute the unit tests via Jest.
FAQs
If you want to use [RedHatInsights/host-inventory](https://github.com/RedHatInsights/host-inventory) you shouldn't use get requests directly, but rather use this client to integrate with this service.
The npm package @redhat-cloud-services/host-inventory-client receives a total of 1,441 weekly downloads. As such, @redhat-cloud-services/host-inventory-client popularity was classified as popular.
We found that @redhat-cloud-services/host-inventory-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.