
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@mercoa/javascript
Advanced tools
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fmercoa-finance%2Fjavascript) [![npm shield]
The Mercoa TypeScript library provides convenient access to the Mercoa APIs from TypeScript.
npm i -s @mercoa/javascript
A full reference for this library is available here.
Instantiate and use the client with the following:
import { MercoaClient } from "@mercoa/javascript";
const client = new MercoaClient({ token: "YOUR_TOKEN" });
await client.entityGroup.create({
foreignId: "your-group-id",
name: "Coastal Corporation",
emailToName: "coastalcorp",
entityIds: [
"ent_e8c2af94-61cd-4036-a765-80341209167b",
"ent_1176dd0c-12e1-41c7-85a5-ae9b4746e64b",
"ent_3dbb4ede-2d1d-49be-a996-a5dfad3641be",
],
});
The SDK exports all request and response types as TypeScript interfaces. Simply import them with the following namespace:
import { Mercoa } from "@mercoa/javascript";
const request: Mercoa.EntityGroupFindRequest = {
...
};
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
import { MercoaError } from "@mercoa/javascript";
try {
await client.entityGroup.create(...);
} catch (err) {
if (err instanceof MercoaError) {
console.log(err.statusCode);
console.log(err.message);
console.log(err.body);
console.log(err.rawResponse);
}
}
If you would like to send additional headers as part of the request, use the headers request option.
const response = await client.entityGroup.create(..., {
headers: {
'X-Custom-Header': 'custom value'
}
});
If you would like to send additional query string parameters as part of the request, use the queryParams request option.
const response = await client.entityGroup.create(..., {
queryParams: {
'customQueryParamKey': 'custom query param value'
}
});
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retryable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retryable when any of the following HTTP status codes is returned:
Use the maxRetries request option to configure this behavior.
const response = await client.entityGroup.create(..., {
maxRetries: 0 // override maxRetries at the request level
});
The SDK defaults to a 60 second timeout. Use the timeoutInSeconds option to configure this behavior.
const response = await client.entityGroup.create(..., {
timeoutInSeconds: 30 // override timeout to 30s
});
The SDK allows users to abort requests at any point by passing in an abort signal.
const controller = new AbortController();
const response = await client.entityGroup.create(..., {
abortSignal: controller.signal
});
controller.abort(); // aborts the request
The SDK provides access to raw response data, including headers, through the .withRawResponse() method.
The .withRawResponse() method returns a promise that results to an object with a data and a rawResponse property.
const { data, rawResponse } = await client.entityGroup.create(...).withRawResponse();
console.log(data);
console.log(rawResponse.headers['X-My-Header']);
The SDK works in the following runtimes:
The SDK provides a way for you to customize the underlying HTTP client / Fetch function. If you're running in an unsupported environment, this provides a way for you to break glass and ensure the SDK works.
import { MercoaClient } from "@mercoa/javascript";
const client = new MercoaClient({
...
fetcher: // provide your implementation here
});
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!
FAQs
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fmercoa-finance%2Fjavascript) [![npm shield]
The npm package @mercoa/javascript receives a total of 2,099 weekly downloads. As such, @mercoa/javascript popularity was classified as popular.
We found that @mercoa/javascript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.