
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@taxformatter/sdk
Advanced tools
Official Node.js SDK for the TaxFormatter API — parse crypto CSVs and bank statement PDFs
Official Node.js SDK for the TaxFormatter API — parse crypto exchange CSVs and bank statement PDFs programmatically.
npm install @taxformatter/sdk
import { TaxFormatter } from '@taxformatter/sdk';
const tf = new TaxFormatter('tf_live_xxx');
// Parse a file by path
const result = await tf.parse('./coinbase_2025.csv');
// Parse a buffer with options
const result = await tf.parse(buffer, 'coinbase.csv', {
outputFormat: 'turbotax',
});
// List supported sources
const sources = await tf.listSources();
// Check usage
const usage = await tf.getUsage();
const tf = new TaxFormatter('tf_live_xxx', {
baseUrl: 'https://api.taxformatter.com', // default
timeout: 30_000, // 30s default
maxRetries: 3, // auto-retry on 429
});
import { TaxFormatter, AuthenticationError, RateLimitError, ParseError } from '@taxformatter/sdk';
try {
await tf.parse('./file.csv');
} catch (err) {
if (err instanceof AuthenticationError) {
// 401 — invalid or missing API key
} else if (err instanceof RateLimitError) {
// 429 — rate limited (auto-retried 3 times before throwing)
console.log(err.retryAfterSeconds);
} else if (err instanceof ParseError) {
// 422 — file could not be parsed
console.log(err.suggestion);
}
}
tf.parse(input, filename?, options?)Parse a crypto CSV or bank statement PDF.
string) or Buffer'koinly' | 'turbotax' | 'coinledger' | 'zenledger'tf.listSources()List all supported crypto exchanges and banks.
tf.getUsage()Get current month's API usage.
tf.health()Check API health status.
MIT
FAQs
Official Node.js SDK for the TaxFormatter API — parse crypto CSVs and bank statement PDFs
The npm package @taxformatter/sdk receives a total of 3 weekly downloads. As such, @taxformatter/sdk popularity was classified as not popular.
We found that @taxformatter/sdk 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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.