D
D
Dokma2017-03-18 16:33:10
Node.js
Dokma, 2017-03-18 16:33:10

Split into small files or shove into one?

In general, now the task is to do such a thing. There are 4 different options for the behavior of the program, for example the first one: the program makes a request to api 1, makes a request to api 2, makes a request to api 4. And so once every 15 minutes. Program two: makes an api request 3, an api request 4, and so once every 15 minutes, etc.
That is, 4 programs with the same requests, but made in a different order and they should work every 15 minutes. And in the end, I need to get information from them. Now I did it very stupidly, 4 functions and they hang on setInterval, and the information is stored in a global array. It seems to me that this idea does not look very nice, I think, but what if we put them all in separate files? It's more beautiful, but there's a problem with their launch and communication. For example, how can I find out the current state of node3 without any databases. In general, tell me how you would do

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dark Hole, 2017-03-18
@abyrkov

I would move the common code into a separate module.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question