Can I Replace Apache with Node.js?

Apachenode.js

Apache Problem Overview


I have a website running on CentOS using the usual suspects (Apache, MySQL, and PHP). Since the time this website was originally launched, it has evolved quite a bit and now I'd like to do fancier things with it—namely real-time notifications. From what I've read, Apache handles this poorly. I'm wondering if I can replace just Apache with Node.js (so instead of "LAMP" it would "LNMP").

I've tried searching online for a solution, but haven't found one. If I'm correctly interpreting the things that I've read, it seems that most people are saying that Node.js can replace both Apache and PHP together. I have a lot of existing PHP code, though, so I'd prefer to keep it.

In case it's not already obvious, I'm pretty confused and could use some enlightenment. Thanks very much!

Apache Solutions


Solution 1 - Apache

If you're prepared to re-write your PHP in JavaScript, then yes, Node.js can replace your Apache.

If you place an Apache or NGINX instance running in reverse-proxy mode between your servers and your clients, you could handle some requests in JavaScript on Node.js and some requests in your Apache-hosted PHP, until you can completely replace all your PHP with JavaScript code. This might be the happy medium: do your WebSockets work in Node.js, more mundane work in Apache + PHP.

Solution 2 - Apache

Node.js may be faster than Apache thanks to it's evented/non-blocking architecture, but you may have problems finding modules/libraries which substitute some of Apache functionality.

Node.js itself is a lightweight low-level framework which enables you to relatively quickly build server-side stuff and real-time parts of your web applications, but Apache offers much broader configuration options and "classical" web server oriented features.

I would say that unless you want to replace PHP with node.js based web application framework like express.js then you should stay with Apache (or think about migrating to Nginx if you have performance problems).

Solution 3 - Apache

I believe Node.js is the future in web serving, but if you have a lot of existing PHP code, Apache/MySQL are your best bet. Apache can be configured to proxy requests to Node.js, or Node.js can proxy requests to Apache, but I believe some performance is lost in both cases, especially in the first one. Not a big deal if you aren't running a very high traffic website though.

I just registered to stackoverflow, and I can't comment on the accepted answer yet, but today I created a simple Node.js script that actually uses sendfile() to serve files through the HTTP protocol. (The existing example that the accepted answer links to only uses bare TCP protocol to send the file, and I could not find an example for HTTP, so I wrote it myself.)

So I thought someone might find this useful. Serving files through the sendfile() OS call is not necessarily faster than when data is copied through "user land", but it ends up utilizing the CPU and RAM less, thus being able to handle larger number of connections than the classic way.

The link: https://gist.github.com/1350901

Solution 4 - Apache

Previous SO post describing exactly what im saying (php + socket.io + node)

I think you could put up a node server on somehost:8000 with socket.io and slap the socket.io client code into

Solution 5 - Apache

Its LAMP versus MEAN nowadays. For a direct comparison see http://tamas.io/what-is-the-mean-stack.

Of course M, E and A are somewhat variable. For example the more recent koa may replace (E)xpress.

However, just replacing Apache with Node.js is probably not the right way to modernize your web stack.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRickView Question on Stackoverflow
Solution 1 - ApachesarnoldView Answer on Stackoverflow
Solution 2 - Apacheyojimbo87View Answer on Stackoverflow
Solution 3 - ApacheyouurayyView Answer on Stackoverflow
Solution 4 - ApacheRichard HollandView Answer on Stackoverflow
Solution 5 - ApacheWolfgang KuehnView Answer on Stackoverflow