| Name | Modified | Size | Downloads / 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
- Add missing permissions to publish workflow by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/72
- Add correct Node.js versions to README by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/73
- Re-write README to better present installation options by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/74
- Update example code to match README by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/75
- Add
filesfield topackage.jsonby @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/76 - Remove dependeny on
siginfopackage by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/77 - Use relative paths for files under current working directory by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/78
- Refactor code to modern JavaScript syntax by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/79
- Replace
stackbackwith internal implementation by @jonkoops in https://github.com/mafintosh/why-is-node-running/pull/80
Full Changelog: https://github.com/mafintosh/why-is-node-running/compare/v3.1.0...v3.2.0