Socket
Socket
Sign inDemoInstall

netsleuth

Package Overview
Dependencies
264
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    netsleuth

Use Chrome's Network Inspector with anything


Version published
Weekly downloads
84
decreased by-35.88%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

netsleuth


netsleuth brings the Chrome DevTools' Network tab to node.js with a native integration and to anything else that speaks HTTP via forward and reverse proxy server.

The public gateway allows you to get publicly accessible URLs for your local development environment, with full TLS and no headaches.

Getting started

netsleuth can be installed as a global command line tool and/or as a dependency in your node.js project.

npm install -g netsleuth
snode myscript.js # runs myscript.js in an inspectable node process, or...
netsleuth inspect http://localhost:3000 myapp.netsleuth.io
npm install --save-dev netsleuth
if (process.env.NODE_ENV == 'dev') {
    var netsleuth = require('netsleuth');
    netsleuth.attach(); // attach the inspector to this process
}

…then open http://localhost:9000 to start inspecting your HTTP(S) requests.

Read the full Getting Started Guide here.

Full documentation is available on the netsleuth website.

Keywords

FAQs

Last updated on 06 May 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc