hyperapp-logger icon indicating copy to clipboard operation
hyperapp-logger copied to clipboard

Log Hyperapp state updates and action information to the console.

Results 3 hyperapp-logger issues
Sort by recently updated
recently updated
newest added

Imagine the following scenario: ```javascript const state = { counters: { count1: 1, count2: 2, count3: 3 } }; const actions = { counters: { inc1: () => ({ count1...

FEATURE
DISCUSSION

As noted in the subject, the Typescript type definitions for the library are yet to be done.

TYPES

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...

FEATURE
DISCUSSION