Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-sequelize-datatable
Advanced tools
This Package is currently using following dependencies.
* [Sequelize] - "^5.12.3"
* [Lodash] - "^4.17.15"
Example request body
{
"draw": 1,
"columns": [
{
"data": "id",
"name": "",
"searchable": true,
"orderable": true,
"search": {
"value": "",
"regex": false
}
},
{
"data": "category",
"name": "",
"searchable": true,
"orderable": true,
"search": {
"value": "",
"regex": false
}
}
],
"order": [
{
"column": 0,
"dir": "asc"
}
],
"start": 0,
"length": 2,
"search": {
"value": "",
"regex": false
}
}
Example code for category model [all columns data(id, category) should be same as database table columns]
const { Category } = require('../../models'); // your model
const sequelizeDatatable = require('node-sequelize-datatable');
exports.categoryTable = async function(req, res) {
var datatableObj = await sequelizeDatatable(req.body);
var count = await Category.count();
var categories = await Category.findAndCountAll(datatableObj);
return res.json({
"draw": req.body.draw,
"recordsFiltered": categories.count,
"recordsTotal": count,
"data": categories.rows
});
}
Angular Code
import { Component, OnInit } from '@angular/core';
import { BlogService } from '../internal-blog/blog.service';
@Component({
selector: 'app-category',
templateUrl: './category.component.html',
styleUrls: ['./category.component.css']
})
export class CategoryComponent implements OnInit {
dtOptions: DataTables.Settings = {};
categories = [];
constructor(
private blogService: BlogService
) { }
ngOnInit(): void {
const that = this;
this.dtOptions = {
pagingType: 'full_numbers',
pageLength: 2,
serverSide: true,
processing: true,
ajax: (dataTablesParameters: any, callback) => {
that.blogService.categoryTable(dataTablesParameters).subscribe(resp => {
that.categories = resp.data;
callback({
recordsTotal: resp.recordsTotal,
recordsFiltered: resp.recordsFiltered,
data: []
});
console.log(resp);
});
},
columns: [
{
data: 'id'
},
{
data: 'category'
}
]
};
}
}
<section class="dashboard-wrap mtb-40">
<div class="container">
<div class="body-content">
<div class="row">
<div class="col-md-3">
<app-nav-bar></app-nav-bar>
</div>
<div class="col-md-9">
<div class="dash-right">
<table datatable [dtOptions]="dtOptions" class="row-border hover">
<thead>
<tr>
<th>ID</th>
<th>Category</th>
</tr>
</thead>
<tbody *ngIf="categories?.length != 0">
<tr *ngFor="let category of categories">
<td>{{ category.id }}</td>
<td>{{ category.category }}</td>
</tr>
</tbody>
<tbody *ngIf="categories?.length == 0">
<tr>
<td colspan="3" class="no-data-available">No data!</td>
</tr>
<tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
FAQs
sequelize server side datatable handler
The npm package node-sequelize-datatable receives a total of 0 weekly downloads. As such, node-sequelize-datatable popularity was classified as not popular.
We found that node-sequelize-datatable 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.