
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
dynamic-table-json
Advanced tools
🌟 A JavaScript library for rendering the json data into the dynamic tables! 🌟
You can install the library using npm:
npm install dynamic-table-json
Import the library
const DynamicTable = require('dynamic-table-json');
Add this HTML Element to the Page where you want to display the table
<div id="DivTempTable1"></div>
Use the Sample.json file / Sample json data
var jsonData = [{
"CUSTOMERID": "43996",
"BUYER_NUMBER": "8682041077",
"BUYER_NAME": "Joseph",
"PINCODE": "600017"
},
{
"CUSTOMERID": "43996",
"NUMBER": "9188682041077",
"NAME": "jorat",
"PINCODE": "600017"
}]
Call the JS Function like this:
DynamicTable.renderTable({
jsonData: jsonData,
targetElementId: 'DivTempTable1'
});
jsonData: An array of JSON data to populate the table.
targetElementId: The ID of the HTML element where the table should be rendered.
tableClasses: An array of CSS/Bootstrap classes to apply to the table.
DynamicTable.renderTable({
jsonData: jsonData,
targetElementId: 'DivTempTable1',
tableClasses: ["table", "table-striped", "table-hover", "table-sm", "text-center"]
});
columnModifiers: An array of column modifiers for adding elements to specific columns
1. The Element to be added in which column
2. Give the HTML Elements / Icons ( SVGs) / Image
additionally by adding like this {{td}} you will get the respective values too .
DynamicTable.renderTable({
jsonData: jsonData,
targetElementId: 'DivTempTable1',
tableClasses: ["table", "table-striped", "table-hover"],
columnModifiers: [
["1", "<a id='{{td}}'>Save Button</a>"],
]
});
https://jorat.gitbook.io/dynamic-table/
If you encounter any issues or have questions, please open an issue / Contact Me in 📞 +918682041077 .
FAQs
A library for rendering dynamic tables in HTML from the JSON data!
The npm package dynamic-table-json receives a total of 0 weekly downloads. As such, dynamic-table-json popularity was classified as not popular.
We found that dynamic-table-json 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.