
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
A Node SDK for the Ion Channel API
Request an api key
You'll also need to define a value for a global variable API_ENDPOINT
, such as https://api.test.ionchannel.io
Node version >=14.15.4
The SDK will be versioned in accordance with Semver 2.0.0. See the releases section for the latest version.
It is always highly recommended to vendor the version you are using.
This SDK is distributed under the Apache License, Version 2.0. See LICENSE.md for more information.
This is intended to be used in a client side application. Instead of making fetch
requests or using a library like axios
(which is what this uses), you can import these services to invoke their methods, which will end up making http requests. If you'd rather make the http requests in a tool like a terminal, you might want to look at our ion-connect
Each of the following entities can be imported into a module with javascript module syntax as named imports from 'anion'
example:
import { Auth } from 'anion'
A lot of the methods have a single argument as an object. This is essentialy a way in javascript to provide named arguments. As long as you provide a single argument as an object to those function calls that have the names of the keys that are required for those function calls, you can order those key-value pairs any way you want.
example:
Rulesets.getAppliedRuleSet({
analysisId: 'abc',
projectId: 'foo',
teamId: '123',
})
Rulesets.getAppliedRuleSet({
teamId: '123',
analysisId: 'abc',
projectId: 'foo',
})
Both cases will yield the same result.
Meta
:
todo: compliment each steps with the api functions that could be invoked
FAQs
A Node SDK for the Ion Channel API
We found that anion-sdk demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.