
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@jstable/jstable
Advanced tools
a lightweight, dependency-free JavaScript plugin which makes a HTML table interactive
The JSTable is a lightweight, dependency-free JavaScript plugin which makes a HTML table interactive.
The plugin is similar to the jQuery datatables but without the jQuery dependencies.
The implementation is inspired by Vanilla-DataTables. Unlike Vanilla-Datatables this implementation is using the in ES6 introduced classes.
Additionally JSTable includes the possibility for server side rendering, which is inspired by jQuery datatables.
You can get more information about the usage on https://jstable.github.io/.
dist folder:<link rel="stylesheet" type="text/css" href="/dist/jstable.css">
<script type="text/javascript" src="/dist/jstable.min.js"></script>
es5 version:<script type="text/javascript" src="/dist/jstable.es5.min.js"></script>
<script type="text/javascript" src="/dist/polyfill-fetch.min.js"></script>
The HTML table needs a thead and tbody section.
<table id="basic">
<thead>
<tr>
<th>Name</th>
<th>Country</th>
<th>Date</th>
<th>Number</th>
</tr>
</thead>
<tbody>
<tr>
<td>Norman Small</td>
<td>Tokelau</td>
<td>2020-02-01 07:22:40</td>
<td>8243</td>
</tr>
...
</tbody>
</table>
The JSTable can be initialized by passing a reference or a CSS3 selector as string:
let myTable = new JSTable("#basic");
or
let table = document.getElementById('basic');
let myTable = new JSTable(table);
Options can be passed as second argument:
let myTable = new JSTable("#basic", {
sortable: true,
searchable: false,
...
});
FAQs
a lightweight, dependency-free JavaScript plugin which makes a HTML table interactive
The npm package @jstable/jstable receives a total of 25 weekly downloads. As such, @jstable/jstable popularity was classified as not popular.
We found that @jstable/jstable 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.