
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
ng2-super-table
Advanced tools
A table component with the following features:
https://andyperlitch.github.io/ng2-super-table/demo/
A table component for angular2 projects
Install through npm:
npm install --save ng2-super-table
Then use it in your app like so:
import {Component} from '@angular/core';
import {SuperTable, ISuperTableColumn} from 'ng2-super-table';
@Component({
selector: 'demo-app',
directives: [SuperTable],
template: `<super-table
[rows]="rows"
[columns]="columns"
[options]="options">
</super-table>`
})
export class DemoApp {
rows = [
{ name: 'thing1', age: 7 },
{ name: 'thing2', age: 7 },
{ name: 'cat', age: 10 },
{ name: 'fish', age: 1 },
];
columns: ISuperTableColumn[] = [
{
id: 'name',
key: 'name'
label: 'Name'
},
{
id: 'age',
key: 'age'
label: 'Age'
}
];
options = {}
}
Please view the demo source for a much more feature-complete example.
<script src="node_modules/ng2-super-table/ng2-super-table.js"></script>
<script>
// everything is exported ng2SuperTable namespace
</script>
All documentation is auto-generated from the source via typedoc and can be viewed here: https://andyperlitch.github.io/ng2-super-table/docs/
npm install
while current directory is this repoRun npm start
to start a development server on port 8000 with auto reload + tests.
Run npm test
to run tests once or npm run test:watch
to continually run tests.
npm run release
MIT
FAQs
A table component for angular2 projects
We found that ng2-super-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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.