Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ng2-qgrid
Advanced tools
Angular data grid
npm install ng2-qgrid
import { GridModule } from 'ng2-qgrid';
import { ThemeModule } from 'ng2-qgrid/theme/material';
@NgModule({
imports: [
GridModule,
ThemeModule
]
})
export class AppModule {
}
Note that now q-grid supports 2 themes out of box @angular/material
and basic
, the second one doesn't require @angular/material
to be installed.
@Component({
selector: 'my-component',
template: `
<q-grid [rows]="rows$ | async">
<q-grid-columns generation="deep">
</q-grid-columns>
</q-grid>
`
})
export class MyComponent {
rows$: Observable<[]>;
constructor(dataService: MyDataService) {
this.rows$ = dataService.getRows();
}
}
Note that q-grid rows should be an array of objects, any other types like array of numbers or strings will throw an error.
If you use material
theme from the q-grid package, you also need to install angular material
git clone https://github.com/qgrid/ng2.git
npm install
npm run start
Chrome
is supported.FireFox
is supported.Safari
is supported.Edge
is in progress.IE11
is in progress.Code licensed under MIT license.
FAQs
Angular data grid
The npm package ng2-qgrid receives a total of 279 weekly downloads. As such, ng2-qgrid popularity was classified as not popular.
We found that ng2-qgrid 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.