Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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 sql
csv
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 2 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.