R has a JSON package
Named rjson, appropriately. It’s quite basic just now, but contains methods for interconversion between R objects and JSON. Something like this:
__ library(rjson)
__ data json json
[1] "{\"a\":1,\"b\":2,\"c\":3}"
__ cat(json, file="data.json")
Use cases? I wonder if RApache could be used to build an API that serves ... [Read more...]