Nodedjs

What is Node.js Scaling Application?

Node.js runs in a single-thread mode, but it uses an event-driven paradigm to handle concurrency. It also facilitates creation of child processes to leverage parallel processing on multi-core CPU based systems. Child processes always have three streams child.stdin, child.stdout, and child.stderr which may be shared with the stdio streams of the parent process. Node provides child_process module which has the following …

What is Node.js Scaling Application? Read More »

What is Node.js Packaging?

JXcore, which is an open source project, introduces a unique feature for packaging and encryption of source files and other assets into JX packages. Consider you have a large project consisting of many files. JXcore can pack them all into a single file to simplify the distribution. This chapter provides a quick overview of the whole …

What is Node.js Packaging? Read More »

Scroll to Top