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.
Table module for angular2. Compatibile with bootstrap3. Quicket way to create table pagination in angular2.
npm install bs3-table
inside your app.module import module
import { Bs3TableModule } from "bs3-table/bs3-table"
...
// inside NgModule
import: [ Bs3TableModule ]
...
In component template
<bs3-table [table]="table" ></bs3-table>
inside component:
import { Table } from "bs3-table/bs3-table"
export interface ExampleRowInterface {
name: string;
age: number;
date?: Date;
}
...
// inside Component Class
public table: Table<any> = new Table<ExampleRowInterface>('Imie', 'Nazwsko', 'Data')
.addRow({ name: 'asdasd', age: 12, date: new Date() })
.addRow({ name: ' asdasd', age: 13 });
...
Class Table is very fexible and can be use for lots of different purpose, combining data in one place.
import { Component, OnInit } from '@angular/core';
import { Injectable } from '@angular/core';
import { Table, Page } from 'bs3-table-bs3-table';
import { Resource, MockingMode, MockRequest } from 'ng2-rest/ng2-rest';
// interface for row
interface DataModel {
name: string;
age: number;
date: Date;
}
// create simple pagination with ng2-rest inside your browser
function mockController(req: MockRequest<DataModel>) {
req.backend.models = req.backend.models.sort((a, b) => a.age - b.age);
let page: Page = <Page>req.body;
return { data: req.backend.getPagination(page.number, page.size) };
}
@Injectable()
export class DataService {
constructor(private rest: Resource<string, any, any>) {
Resource.map('api.com', 'http://api.com')
rest.add('api.com', 'example_data')
Resource.setMockingMode(MockingMode.MOCKS_ONLY);
}
getData = (page: Page) => this.rest.api('api.com', 'example_data')
// you can comment line below for production version
.mock({ $name: "{{name.firstName}}", $age: "{{random.number}}", $date: "{{date.recent}}" }, 200, mockController, 100)
.save(page)
}
@Component({
selector: 'app-preview',
template: `<bs3-table [table]="table" ></bs3-table>`
})
export class PreviewComponent implements OnInit {
constructor(private data: DataService) { }
public table: Table<any>;
ngOnInit() {
this.table = new Table('Imie', 'Nazwisko', 'Data')
this.table.onDateNeeded.subscribe(page => {
this.data.getData(page).subscribe((rows: any[]) => {
this.table.rows.length = 0;
rows.forEach(r => this.table.addRow(r));
});
});
this.table.changePage();
}
}
FAQs
Very universal table component for angular 2 appst
The npm package bs3-table receives a total of 1 weekly downloads. As such, bs3-table popularity was classified as not popular.
We found that bs3-table 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.