Home > Net >  Best solution to run node js AND python 24/7
Best solution to run node js AND python 24/7

Time:12-03

My Problem is, that i have a simple node project that does some calculus. In order for it to work, it beforehand starts a python script that webscrapes the internet for the wanted data.

I now want to run this Node script 24/7, obviously with the python script and chromedriver working.

Is this even possible? And if, how?

Thanks!

CodePudding user response:

You could first try looking into remote hosting (platforms like Heroku, Firebase, offer a great service at a low monthly subscription fee )

If however you're going for local hosting :

You could easily set it up to work on a Raspberry Pi for a one time payment ranging from $10 to $35 (depending on your budget & power demands).

  • Related