
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
hn-kanbanboard-npm
Advanced tools
JavaScript library help you to build and manage a Kanban Board easily in your project, (no jQuery required)
Supply Chain Security
Vulnerability
Quality
Maintenance
License
JavaScript library help you to build and manage a Kanban Board easily in your project, no jQuery required
https://hasannaser.github.io/HN-kanbanboard/index.html
Install via command line using npm
.
npm install hn-kanbanboard-npm
Or
Clone the repo and use the javascript and the css files in the dist
folder.
include css file
<link rel="stylesheet" href="../dist/hn_kanbanboard.css">
include js file
<script src="../dist/hn_kanbanboard.js"></script>
<div id="myDiv">
</div>
let cards_ = [
{"board_id": "1", "card_id": "1", "card_title": "Hello People" },
{"board_id": "2", "card_id": "2", "card_title": "Hello People" },
{"board_id": "3", "card_id": "4", "card_title": "Hello People"},
];
var knbn = HN_kanbanTable({
container: "#myDiv",
lists: [{"id": "1", "title": "Todo"}, {"id": "2", "title": "Doing"}, {"id": "3", "title": "Done"}],
cards: cards_,
onCardAdd: function (data) {
//data.boardId,
//data.title,
console.info(data);
},
onCardDrgStart: function (evt) {
//evt.currentList :current list
//evt.cardSelf :card element
console.info(evt)
},
onCardDrgEnd: function (evt) {
//evt.listTo : target list
//evt.boardFrom : previous list
//evt.oldIndex : element's old index within old parent
//evt.newInde : element's new index within new parent
//evt.cardSelf : card element
console.info(evt)
},
onCardSortChange: function (evt) {
//evt.currentList :current list
//evt.oldIndex : element's old index within old parent
//evt.newInde : element's new index within new parent
//evt.cardSelf : card element
console.info(evt)
},
onCardClick: function (data) {
//data.title,
//data.currentListId,
//data.currentList,
console.info(data);
}
});
knbn.init();
hn-kanbanboard use sortablejs for drag&drop
hn-kanbanboard is OpenSource and licensed under the Terms of Mozilla Public License 2.0. You're welcome to contribute
FAQs
JavaScript library help you to build and manage a Kanban Board easily in your project, (no jQuery required)
We found that hn-kanbanboard-npm 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.