Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

diogenes-lantern

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diogenes-lantern

It helps debugging diogenes

latest
Source
npmnpm
Version
6.0.2
Version published
Maintainers
1
Created
Source

diogenes-lantern

This package visualise the dependency graph of a diogenes registry. It helps understanding the code in a visual way.

graph

How to use it

The idea is to import it as express middleware:

const express = require('express');
const lanternMiddleware = require('diogenes-lantern');

const app = express();

app.get('/', lanternMiddleware(getRegistry, { title: 'test' }))
app.listen(3000, () => console.log('Listening at: http://localhost:3000'))

The middleware takes a function that returns a diogenes registry. This function takes req and res as argument so it is able to extract a registry from there if necessary.

When hitting the endpoint you get a representation of the dependency graph. You can inspect every node and get helpful info such as documentation, file and line number etc. Here's an example implementation of getRegistry:

const getRegistry = (req, res) => registry.clone().addDeps({ req, res })

The "clone" ensure I am not changing the original registry.

graph2

Keywords

plugins

FAQs

Package last updated on 03 May 2018

Did you know?

Socket

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.

Install

Related posts