Hi Eysenck,
You may not want to use Node.js (or any javascript vm) for this, due to the inherent issues
javascript has dealing with fractional numbers, for instance, take the classic expression:
"0.3 - 0.2 != 0.1"
However, as this is a financial application, you'd probably be storing currency as an integer,
not as a float, so you wouldn't have this issue. (ie, store all currency in the lowest fractional,
so $19.35 is stored as 1935).
As for choosing your web framework, you'll definitely want to make sure that the framework
is either battle tested or built to a good standard (ie, it'd suck if you had mass-insertion issues
in your DB, or if your app crashed and you lost all state of accounts.)
So, the TL;DR; of this is: You could probably use node.js + express for this, but, you'll want to
make sure you know node.js first, before jumping down this chasm. You may just be better off
using the stack of technologies you already know.
Kind Regards,
Micheil Smith
--
BrandedCode.com
On 12/07/2012, at 8:22 PM, Eysenck Gómez wrote:
> Hi, I'm a bit new here, I have in mind to make a real-time application on that involve money and bank accounts, and was thinking of using Node.js + Express + Now.js any SQL database or NoSQL, the problem I have no information on how safe or good is Node in this field, any of you have used Node.js applications of this kind?, I care much about security as we are talking about money, but everything is hackable I need something solid and secure, and as Node.js is a bit new, I wanted to know if I recommend and if so, which database would be good for this type of application? NoSQL or SQL? Thank you for your help.