Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@morpheusnephew/td-ameritrade
Advanced tools
This project is a typescript wrapper for TD Ameritrade's API
The default class of clients is the TdAmeritradeClient. It must be initialized with your client id and each client sub-client is a property of the TdAmeritradeClient for example the accounts client.
import TdAmeritradeClient from '@morpheusnephew/td-ameritrade/clients';
(async () => {
// Initializing TD Ameritrade client with your client id and access token
const client = new TdAmeritradeClient({
accessToken: 'yourAccessToken',
});
// Makes request to get all accounts associated with your access token
const { data: allAccounts } = await client.accounts.getAllAccounts();
})();
As you may notice from the return signatures of client methods and in regards to the unit tests, the response data nor the status code of some of the endpoints are known just from looking at the documentation. So what you see in the unit tests specifically for CUD operations is me taking my best guess as to what the status code should be.
FAQs
A client for TD Ameritrade
The npm package @morpheusnephew/td-ameritrade receives a total of 45 weekly downloads. As such, @morpheusnephew/td-ameritrade popularity was classified as not popular.
We found that @morpheusnephew/td-ameritrade demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.