
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@coodoo/coo-table
Advanced tools
A flexible Table for your REST-Service. Customize it to your needs as everything can be changed via Templates.
A flexible Table for your REST-Service. Customize it to your needs as everything can be changed via Templates.
npm install @coodoo/coo-table
The following npm scripts are available:
npm run start is starting the Demo Applicationnpm run build-lib builds the coo-table-libraryImport the CooTableModule to your Project.
Import BrowserModule and BrowserAnimationsModule, if you want to use the date-filter with animations, or NoopAnimationsModule if without.
Inject ListingService and listen for the list$-Observable for refreshing
export class ListingComponent implements OnInit {
constructor(private listingParameters: ListingParameters, public listingService: ListingService) {}
ngOnInit() {
this.listingService.list$.subscribe(() => {
this.list();
});
}
list() {
this.loading = true;
this.service.getListing(this.listingParameters).subscribe((listingResult: ListingResult<any>) => {
this.rows = listingResult.results;
this.metadata = listingResult.metadata;
this.loading = false;
});
}
}
Use the CooTable Component in your Templates
<coo-table [rows]="rows" [metadata]="metadata" [loading]="loading">
<ng-template #header>
<tr>
<th>
<span>#</span>
<coo-table-sorter column="id"></coo-table-sorter>
</th>
<th>
<span>name</span>
<coo-table-sorter column="name"></coo-table-sorter>
</th>
</tr>
</ng-template>
<ng-template #filters>
<tr>
<td><coo-table-filter-text column="id"></coo-table-filter-text></td>
<td><coo-table-filter-text column="name"></coo-table-filter-text></td>
</tr>
</ng-template>
<ng-template #row let-row="row">
<td>{{row.id}}</td>
<td>{{row.name}}</td>
</ng-template>
</coo-table>
If routeChange is set in the Config your Url QueryParams getting updated dynamically.
Translations can be set in translations in the CooTableConfig.
ngOnInit() {
this.cooTableConfig.translations.of = 'von';
this.cooTableConfig.translations.entry = 'Eintrag';
this.cooTableConfig.translations.entries = 'Einträgen';
this.cooTableConfig.translations.searchPlaceholder = 'Suchbegriff';
}
MIT © coodoo
Klemens Kühle (klemens.kuehle@coodoo.de)
Arend Kühle (arend.kuehle@coodoo.de)
Johannes Höß (johannes.hoess@coodoo.de)
FAQs
A flexible Table for your REST-Service. Customize it to your needs as everything can be changed via Templates.
We found that @coodoo/coo-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.