
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@savantly/ngx-graphexp
Advanced tools
GraphExp plugin for Angular
yarn -
yarn add @savantly/ngx-graphexp
npm -
npm install @savantly/ngx-graphexp
Import the required modules into your application
import { GraphexpModule, GraphexpService } from '@savantly/ngx-graphexp';
import { GremlinClientOptions } from '@savantly/gremlin-js';
Create an instance of the GraphexpService, passing in a configuration object -
export const graphexpService = new GraphexpService(new GremlinClientOptions());
Use the component in your application, passing in custom options -
import { GraphConfig, GraphexpService } from '@savantly/ngx-graphexp';
import { Component } from '@angular/core';
@Component({
selector: 'sv-root',
template: '<sv-graphexp [graphexpService]="service" [graphConfig]="graphConfig"></sv-graphexp>',
styleUrls: ['./app.component.css']
})
export class AppComponent {
graphConfig: GraphConfig = new GraphConfig();
constructor (public service: GraphexpService) {
this.graphConfig.nodeLabels = ['god', 'titan', 'demigod', 'human', 'monster', 'location'];
this.graphConfig.linkLabels = ['is_father_of', 'has_pet', 'lives_in'];
}
}


Select a label and add properties to the node

shift-drag to create a new connection between nodes

Select the label and add properties to the link

FAQs
Gremlin client [Tinkerpop] for an Angular app
We found that @savantly/ngx-graphexp 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.