
Security News
/Research
npm Phishing Email Targets Developers with Typosquatted Domain
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
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.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
Security News
Knip hits 500 releases with v5.62.0, refining TypeScript config detection and updating plugins as monthly npm downloads approach 12M.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.