
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
ng2-treelist
Advanced tools
(WIP) Getting comfy publishing Angular2 Components.
If you are interested in an Angular2 tree component, please use n2-tree
npm install --save ng2-treelist
After installing ng2-treelist. Import the Tree and Tree Model into your component.
import {Tree, TreeModel} from 'ng2-tree/components';
@Component({
selector: 'app',
template: `
<tree [tree]="tree"></tree>
`
})
export class App {
public tree: TreeModel[] = [
new TreeModel("Menu Item 1", [
new TreeModel("SubMenu Item 1", [
new TreeModel("SubSubMenu Item 1", []),
new TreeModel("SubSubMenu Item 2", [])
]),
new TreeModel("SubMenu Item 2", [])
]),
new TreeModel("Menu Item 2", []),
new TreeModel("Menu Item 3", [
new TreeModel("SubTreeModel 3", [])
])
];
}
TreeModel is will include your own tree nodes.
MIT © Malek Hakim
FAQs
Create a tree list component with Angular2
The npm package ng2-treelist receives a total of 2 weekly downloads. As such, ng2-treelist popularity was classified as not popular.
We found that ng2-treelist 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.