Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [node.js]

Node.js is an event-based, non-blocking, asynchronous I/O runtime that uses Google's V8 JavaScript engine and libuv library. It is used for developing applications that make heavy use of the ability to run JavaScript both on the client as well as on the server side and therefore benefit from the re-usability of code and the lack of context switching.

1 vote
0 answers
83 views
+50

"ERR_MODULE_NOT_FOUND" error when using TypeScript project references

I'm trying to implement TypeScript's project references to be able import code from a common package between my application's services. This is how the tsconfig.json of the shared package (...
Viriato's user avatar
  • 644
1 vote
0 answers
44 views
+50

Distribution of execution between phases of I/O callbacks in node.js

The node.js event loop is still so poorly described in the documentation that we have to ask more questions.. There are two phases: pending callbacks and poll, both, as the documentation says, ...
MaximPro's user avatar
  • 529