This question is more complicated than it first looks - although still conceptually fairly simple.
I am representing big numbers, which are outside of javascript's max range, as strings of hexadecimal digits (this is in accordance with the approach of node-mysql's bigNumberStrings
option).
I simply want to know how can I convert a string of hexadecimal digits into a string of decimal digits of the same numerical value? Obviously, there is a complexity in doing this arising from the fact that you cannot do maths with javascript with large numbers.
I have done a significant amount of searching for a standard solution although I haven't found one yet.