hyperapp-logger
hyperapp-logger copied to clipboard
Log Hyperapp state updates and action information to the console.
Imagine the following scenario: ```javascript const state = { counters: { count1: 1, count2: 2, count3: 3 } }; const actions = { counters: { inc1: () => ({ count1...
As noted in the subject, the Typescript type definitions for the library are yet to be done.
New Options
Today the only available option is `log` to provide a custom logging function. It's a good escape hatch that's highly flexible, but I'm wondering if there should be other options...