Download Latest Version v3.2.2 source code.zip (7.2 kB)
Email in envelope

Get an email when there's a new version of why-is-node-running

Home / v3.2.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2024-07-12 2.7 kB
v3.2.0 source code.tar.gz 2024-07-12 4.3 kB
v3.2.0 source code.zip 2024-07-12 7.1 kB
Totals: 3 Items   14.2 kB 1

Notable Changes

Relative file paths

The file paths shown in the output are now relative to the current working directory, if a path is outside of the current working directory the full absolute path will be used instead.

Before

:::log
There are 4 handle(s) keeping the process running

# Timeout
/path/to/project/example.js:6  - setInterval(() => {}, 1000)
/path/to/project/example.js:10 - startServer()

# TCPSERVERWRAP
/path/to/project/example.js:7  - server.listen(0)
/path/to/project/example.js:10 - startServer()

# Timeout
/path/to/project/example.js:6  - setInterval(() => {}, 1000)
/path/to/project/example.js:11 - startServer()

# TCPSERVERWRAP
/path/to/project/example.js:7  - server.listen(0)
/path/to/project/example.js:11 - startServer()

After

There are 4 handle(s) keeping the process running

# Timeout
example.js:6  - setInterval(() => {}, 1000)
example.js:10 - startServer()

# TCPSERVERWRAP
example.js:7  - server.listen(0)
example.js:10 - startServer()

# Timeout
example.js:6  - setInterval(() => {}, 1000)
example.js:11 - startServer()

# TCPSERVERWRAP
example.js:7  - server.listen(0)
example.js:11 - startServer()

No more dependencies

This version of why-is-node-running removes all of it's additional dependencies, resulting in a smaller overall package size.

What's Changed

Full Changelog: https://github.com/mafintosh/why-is-node-running/compare/v3.1.0...v3.2.0

Source: README.md, updated 2024-07-12