Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is using Node.js or Ringojs safe for live websites?

As stated in the title, I would like to know if it's safe to develop a website using one of the actuals "omg" platforms that are Node.js and Ringo.js at their actual version.

Also, I would like to know if they support cookies/sessions and how do they deals with multi-fields post (fieldname[] in PHP).

Thank you

--Edit--

Thanks for all the links guys.

What can you tell me about Ringojs ?

Since I haven't figured which platform to start playing with. I must admit that the fact it can use Java seamlessly really impress me. The only available XSLT 2.0 library is in Java. I could use it as a templating system.

Is there anyone who had the chance to play with Ringojs?

like image 761
Cybrix Avatar asked Sep 08 '11 22:09

Cybrix


People also ask

Is NodeJS good for website?

Node. js is a powerful JavaScript-based runtime environment that provides the server-side for web applications. It was designed with scalability and performance in mind, making node an ideal solution for high-traffic websites or any other type of application where speed is desired.

When NodeJS should not be used?

Avoid Using Node. js: Processing CPU heavy and complex applications: Node. js uses an event-based, non-blocking I/O architecture and only has one CPU – all of that intensive CPU processing would block incoming requests. As a result of the high-end number crunching, the thread might get stuck.

Which famous websites use NodeJS?

Here are the companies using Node. js: Netflix, NASA, Trello, PayPal, LinkedIn, Walmart, Uber, Twitter, Yahoo, eBay, GoDaddy, and got much better results.

Which is best PHP or NodeJS?

Due to the V8 engine, asynchronous execution, and real-time server interaction, Node. js offers a better execution speed and certainly outperforms PHP.


2 Answers

From my experience using both, Ringo is more stable and "safer" for production use but you can comfortably deploy both. In addition to the ability to wrap existing Java libraries that you mention, you also get the benefit of being able to run it in an existing webapp container which manages the lifecycle of the application for you and ensures its availability.

That being said, it doesn't have to be an either or decision. By using my common-node package and assuming you don't use any Java libraries, it's perfectly feasible to maintain a project that runs on both without any changes to the code.

I've also included benchmarks that test the performance of Node.js vs. RingoJS the results of which you can find in the common-node/README.md. To summarize: RingoJS has slightly lower throughput than Node.js, but much lower variance in response times while using six times the RAM with default Java settings. The latter can be tweaked and brought down to as little as twice the memory usage of Node with e.g. my ringo-sunserver but at the expense of decreased performance.

like image 92
Oleg Avatar answered Oct 20 '22 17:10

Oleg


Node.js is stable, so yes it's safe to use. Node.js is capable of handling cookies, sessions, and multiple fields but are not as easy to manage. Web frameworks solve this problem.

I recommend Express.js, it's an open-source web framework for Node.js which handles all of this and more.

You can download it here: https://github.com/visionmedia/express

 

I hope this helped!

like image 44
SUDO Los Angeles Avatar answered Oct 20 '22 17:10

SUDO Los Angeles