|
|
|
|
|
by wircho
4015 days ago
|
|
Hi everyone. The author here. A couple of answers to much asked questions: Why JSON? Mainly because it makes it natural to embed JSON objects into code that's otherwise purely functional. Also, as @detaro pointed out, it saved us the time to build our own parser. Why not use an interpreter/compiler for an existing functional language? Building our own language allows us to control the reach of the code and prevent malicious stuff. Having our own compiler is also useful when threading and networking matters as much as it does to us, since there is simultaneous front end and back end processing. The result is a very simple syntax for API aggregation where we take care of all the hard part in the background :) |
|