![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.
@metrichor/epi2me-client-node
Advanced tools
This library is for performing authenticated operations with the EPI2ME GraphQL API. It is published in 2 flavours: node and web. They each provide specific networking and crypto implementations for their platforms, to better meet your requirements.
This library is for performing authenticated operations with the EPI2ME GraphQL API. It is published in 2 flavours: node and web. They each provide specific networking and crypto implementations for their platforms, to better meet your requirements.
npm i @metrichor/epi2me-client-web
# OR
npm i @metrichor/epi2me-client-node
Both flavours support authentication via key/secret or JWTs. Exposed via separate client factories.
import { create_epi2me_client } from '@metrichor/epi2me-client-node';
const graphql = create_epi2me_client({
client: { name: 'my platform', version: '1.0.0' },
credentials: { key: 'my api key', secret: 'my api secret' },
});
async function main () {
const { data } = await graphql.query({
query: gql`query MyQuery {
allWorkflowInstances {
results {
idWorkflowInstance
}
}
}`
});
console.log(data.allWorkflowInstances.results);
}
void main();
Client constructors return instances of ApolloClient, with their caches pre-configured. It's often easier to use the clients by wrapping them with helper functions. But this is left as an exercise for the user, to maximise compatibility with existing code.
In addition to the 2 authenticated clients we also provide a simple mock client for writing tests.
const client = create_mock_client(
{ name: 'example client', version: '1.0.0' },
(op) => ({ data: { id: 42} }) // request handler
);
expect(
await client.query({ query: gql`query CustomQuery { id }` })
).toStrictEqual(
expect.objectContaining({ data: { id: 42 } })
);
FAQs
This library is for performing authenticated operations with the EPI2ME GraphQL API. It is published in 2 flavours: node and web. They each provide specific networking and crypto implementations for their platforms, to better meet your requirements.
We found that @metrichor/epi2me-client-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.