
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
simple-datatables-classic
Advanced tools
A lightweight, dependency-free JavaScript HTML table plugin.
A lightweight, extendable, dependency-free javascript HTML table plugin that also works in older browsers. Similar to jQuery DataTables, but without the jQuery dependency. See Simple-DataTables for a version that uses up-to-date technology and only targets current browsers.
Based on Vanilla-DataTables, but written in ES2018.
See the demos here.
To use the CDN version of Simple-DataTables use either https://cdn.jsdelivr.net/npm/simple-datatables-classic@latest or https://unpkg.com/simple-datatables-classic. You also need to add the CSS styling, so the elements you'll add to html head element can for example be these:
<link href="https://cdn.jsdelivr.net/npm/simple-datatables-classic@latest/dist/style.css" rel="stylesheet" type="text/css">
<script src="https://cdn.jsdelivr.net/npm/simple-datatables-classic@latest" type="text/javascript"></script>
LGPL
csv, txt json, and sqlcsv and json dataSimple-DataTables-classic Documentation
npm install simple-datatables-classic --save
Then just initialise the plugin by import DataTable and either passing a reference to the table or a CSS3 selector string as the first parameter:
import {DataTable} from "simple-datatables-classic"
const myTable = document.querySelector("#myTable");
const dataTable = new DataTable(myTable);
// or
const dataTable = new DataTable("#myTable");
You can also pass the options object as the second paramater:
import {DataTable} from "simple-datatables-classic"
const dataTable = new DataTable("#myTable", {
searchable: false,
fixedHeight: true,
...
})
If using the CDN:
const dataTable = new simpleDatatables.DataTable("#myTable", {
searchable: false,
fixedHeight: true,
...
})
FAQs
A lightweight, dependency-free JavaScript HTML table plugin.
The npm package simple-datatables-classic receives a total of 6 weekly downloads. As such, simple-datatables-classic popularity was classified as not popular.
We found that simple-datatables-classic 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.