
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@kaiord/tcx
Advanced tools
TCX format adapter for the Kaiord health & fitness data framework. Provides reading, writing, and XSD validation of Garmin Training Center XML files.
pnpm add @kaiord/core @kaiord/tcx
import { createDefaultProviders } from "@kaiord/core";
import { createTcxProviders } from "@kaiord/tcx";
const providers = createDefaultProviders({
tcx: createTcxProviders(),
});
// TCX to KRD
const krd = await providers.convertTcxToKrd!({ tcxString });
// KRD to TCX
const tcxString = await providers.convertKrdToTcx!({ krd });
import {
createFastXmlTcxReader,
createFastXmlTcxWriter,
createXsdTcxValidator,
} from "@kaiord/tcx";
import { createConsoleLogger } from "@kaiord/core";
const logger = createConsoleLogger();
const reader = createFastXmlTcxReader(logger);
const writer = createFastXmlTcxWriter(logger, createXsdTcxValidator(logger));
const validator = createXsdTcxValidator(logger);
createTcxProviders(logger?: Logger): TcxProvidersCreates TCX adapter instances for use with createDefaultProviders().
createFastXmlTcxReader(logger: Logger): TcxReaderCreates a TCX file reader using fast-xml-parser.
createFastXmlTcxWriter(logger: Logger, validator: TcxValidator): TcxWriterCreates a TCX file writer using fast-xml-parser.
createXsdTcxValidator(logger: Logger): TcxValidatorCreates an XSD schema validator for TCX files.
MIT
FAQs
TCX format adapter for the Kaiord health & fitness data framework
The npm package @kaiord/tcx receives a total of 208 weekly downloads. As such, @kaiord/tcx popularity was classified as not popular.
We found that @kaiord/tcx 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.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.