Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
aureooms-js-adjacency-list
Advanced tools
Adjacency list code bricks for JavaScript. Parent is js-gn.
for ( let e of E( G ) ) ... ;
Can be managed through jspm, duo, component, bower, ender, jam, spm, and npm.
jspm install github:aureooms/js-adjacency-list
# or
jspm install npm:aureooms-js-adjacency-list
No install step needed for duo!
component install aureooms/js-adjacency-list
bower install aureooms-js-adjacency-list
ender add aureooms-js-adjacency-list
jam install aureooms-js-adjacency-list
spm install aureooms-js-adjacency-list --save
npm install aureooms-js-adjacency-list --save
let adjacencylist = require( "github:aureooms/js-adjacency-list" ) ;
// or
import adjacencylist from 'aureooms-js-adjacency-list' ;
let adjacencylist = require( "aureooms/js-adjacency-list" ) ;
let adjacencylist = require( "aureooms-js-adjacency-list" ) ;
The script tag exposes the global variable adjacencylist
.
<script src="bower_components/aureooms-js-adjacency-list/js/dist/adjacency-list.min.js"></script>
Alternatively, you can use any tool mentioned here.
require( [ "aureooms-js-adjacency-list" ] , function ( adjacencylist ) { ... } ) ;
let dll = require( "aureooms-js-dll" ) ;
let Graph = adjacencylist.List( dll.DoublyLinkedList ) ;
let { V , E , N } = require( "aureooms-js-graph-theory-notation" ) ;
let G = new Graph( ) ;
let u = G.vadd( ) ;
let v = G.vadd( ) ;
let e = G.eadd( u , v ) ;
for ( let w of V( G ) ) ... ;
for ( let e of E( G ) ) ... ;
for ( let w of N( G , u ) ) ... ;
G.edel( e ) ;
G.vdel( v ) ;
G.vdel( u ) ;
FAQs
adjacency list code bricks for JavaScript
The npm package aureooms-js-adjacency-list receives a total of 7 weekly downloads. As such, aureooms-js-adjacency-list popularity was classified as not popular.
We found that aureooms-js-adjacency-list 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.