Damien
Damien
It may be nice to be able to output js values as go files so we could consume configuration defined by jk in a go program. For instance, if a...
It may be nice to restricts parameters to the top level to avoid the "glog" effect. Having libraries defines all sorts of parameters without the user having a say in...
Unfortunately, the YAML library we use doesn't expose the indentation level. We'd need to either fork it or find another one.
The release process should update https://github.com/jkcfg/website/blob/master/src/params.json#L3. An alternative could be the website asking github for the latest tag, but that sounds like more work and an additional request we don't...
Flatbuffers are constructed by: - Allocating an ArrayBuffer of a certain size, by default 1kb. That buffer can grow on demand if the table serialised requires it (which of course...
It could be quite handy to allow the construct `import { foo } from './params.json'`, loading the json file and present it as a JS object.
We could generate XML from a JS object with https://en.wikipedia.org/wiki/JsonML
When an exception is being raised from the js part of the std library, it references the one line of the bundled & minimised bit of code our sdt lib...
When we change something, it may be nice to be able to regenerate the expected results in one go and check the diff matches the modification we just made. This...