▲ | davidpolberger 5 days ago | |||||||||||||
I'm working on an engine for Excel-like formulas, which will be available both as a library and as a service (which I've mentioned on HN a few times before). I originally started work on the engine back in 2008, when our app builder needed it. This is a wheel I see people reinventing all the time, often for use in SaaS applications. The implementations are often underwhelming: function support is limited, documentation is sparse to non-existent and errors are typically only communicated at runtime -- if at all. Formula editors usually lack autocomplete, making them frustrating to use. I've spent years solving all these problems (with a statically-typed language), and I'd love for others to benefit from the work. I have extracted the formula engine from our app compiler, so the library is nearly complete. The runtime part (evaluating formulas) has been rewritten in TypeScript. Next, I'll build a service around it to validate, compile and evaluate formulas -- which should be fun. I'm planning to do a Show HN once I have a preview up and running. | ||||||||||||||
▲ | junto 3 days ago | parent | next [-] | |||||||||||||
Is this like gorules? | ||||||||||||||
| ||||||||||||||
▲ | mceoin 4 days ago | parent | prev [-] | |||||||||||||
very cool |