.. such as the ones in following screenshot (Node 8 on Ubuntu):
Asked
Active
Viewed 82 times
1 Answers
1
As far as I know a Node package does not only have to consist of only JavaScript. It could require python
or contain C
.
CasperJS even contains C#
:
https://github.com/casperjs/casperjs/blob/master/src/casperjs.cs
NodeJS itself uses gyp
so naturally I would assume it also requires python if it is not already present on your machine:
https://nodejs.org/en/docs/meta/topics/dependencies/#gyp

mchl18
- 2,119
- 12
- 20
-
1OP is talking about node itself, not a package, and *most* of node is written in C++. – Jared Smith Sep 24 '18 at 22:54
-
I am not installing any specific package, just a "default" Node 8.12 installation. – marko-36 Sep 24 '18 at 22:56
-
it uses `gyp` which is a python package, so it needs python: https://nodejs.org/en/docs/meta/topics/dependencies/#gyp – mchl18 Sep 24 '18 at 23:15