
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@trackstar/test-angular-package
Advanced tools
An Angular button component that launches the Trackstar connect modal
npm:
npm install @trackstar/angular-trackstar-link
yarn:
yarn add @trackstar/angular-trackstar-link
The trackstar-link modal can be triggered using the trackstar-connect-button component.
<trackstar-connect-button
[config]="myConfig"
[buttonText]="Connect your WMS"
></trackstar-connect-button>
export class AppComponent {
someCustomerId = '12345';
myConfig = {
onSuccess: async (authCode: string) => {
await fetch('https://my-company/store-token', {
method: 'POST',
body: JSON.stringify({
customer_id: this.someCustomerId,
authCode: authCode
}),
});
},
onClose: () => {
console.log('closed');
},
onLoad: () => {
console.log('loaded');
},
getLinkToken: async () => {
const res = await fetch('https://my-company/link-token', {
method: 'POST',
});
const {linkToken} = await res.json();
return linkToken;
}
};
}
Use optional integrationAllowList and integrationBlockList props to determine the specific integrations to display. Both props take an string array of integration names.
To only show ShipBob and Ongoing integrations use
integrationAllowList={['shipbob', 'ongoing']}
To show all integrations except ShipBob and Ongoing use
integrationBlockList={['shipbob', 'ongoing']}
The integrationAllowList and integrationBlockList props are mutually exclusive. If both props are given values, all integrations will be displayed.
Integration IDs that can be used in these props can be found in the table here: https://docs.trackstarhq.com/introduction#warehouse-management-systems
Set the sandbox prop to true to include a sandbox WMS in the list of integrations. This is useful for testing.
Contact us at support@trackstarhq.com.
FAQs
An Angular component for Trackstar Connect Modal
The npm package @trackstar/test-angular-package receives a total of 2 weekly downloads. As such, @trackstar/test-angular-package popularity was classified as not popular.
We found that @trackstar/test-angular-package 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.