
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
nega-datatable
Advanced tools
Simple Data table webcomponent
See: Documentation, Demo.
npm install --save nega-datatable
<html>
<head>
<script type="module">
import 'nega-datatable/nega-datatable.js';
</script>
</head>
<body>
<nega-datatable>
<span slot="name"></span>
</nega-datatable>
<script>
// Fill table with data
document.querySelector('nega-datatable').items = [
{name: 'Kenneth'}
]
</script>
</body>
</html>
import {PolymerElement, html} from '@polymer/polymer';
import 'nega-datatable/nega-datatable.js';
class SampleElement extends PolymerElement {
static get properties() {
return {
items: Array
}
}
static get template() {
return html`
<nega-datatable items={{items}}>
<span slot="name"></span>
</nega-datatable>
`;
}
}
customElements.define('sample-element', SampleElement);
Feel free to fork and send over PRs. Still a lot of places this can be improved, i.e. styling, more options, or better behaviors.
git clone https://github.com/kennethklee/nega-datatable
cd nega-datatable
npm install
$ npm start
$ npm test
FAQs
Simple data table webcomponent
We found that nega-datatable 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

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.