Reader upgrades
· 3 min read
The Reader converts text into data. It's a key component in making Convex based apps work effectively in multiple ways:
- Source Code like
(transfer #101 1000000)
is transformed into trees of code ready for execution on the CVM. - REST APIs can use Convex data in text form with the MIME type
application/cvx
- Arbitrary Data can be specified in
.cvx
files like[{:name "Bob" :age 42} {:name "Sarah" :age 37}]
In preparation for Protonet, we've been putting the final touches on the Reader. So what's new?