
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@extrahorizon/javascript-sdk
Advanced tools
This package serves as a JavaScript wrapper around all Extra Horizon cloud services.
This package serves as a JavaScript wrapper around all Extra Horizon cloud services.
To get started with the ExtraHorizon SDK you'll need to install it, and then get credentials which will allow you to access the backend.
Using npm:
npm install @extrahorizon/javascript-sdk
Using yarn:
yarn add @extrahorizon/javascript-sdk
import { createOAuth2Client } from '@extrahorizon/javascript-sdk';
(async () => {
const exh = createOAuth2Client({
host: '',
clientId: '',
});
await exh.auth.authenticate({
password: '',
username: '',
});
console.log('exh.users.health()', await exh.users.health());
console.log('exh.users.me()', await exh.users.me());
})();
Please see authentication examples for more options.
The data returned from the backend is mapped using interceptors:
records_affected will be replaced by affected_recordsThe MIT License (MIT). Please see License File for more information.
Throughout the different services we use this for easy access to other functions in each service. The usage of this as first parameter is explained here: https://www.typescriptlang.org/docs/handbook/2/functions.html#declaring-this-in-a-function. This parameter is excluded from all exported types.
find(
this: DataSchemasService,
options?: { rql?: RQLString }
): Promise<PagedResult<Schema>>;
FAQs
This package serves as a JavaScript wrapper around all Extra Horizon cloud services.
We found that @extrahorizon/javascript-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.