Suppose I am making a nodejs module that I will upload in https://www.npmjs.com/.
And my nodejs module is using a python script and the python script using some modules that has to be installed using pip, right now my code is working because I have the python modules installed globally but suppose someone pulls my code who doesn't have python installed then I guess my js module won't work as intended.
What should I do
Is there any hack around this.