JMJose Marininjosuamanuel.hashnode.dev·Nov 7, 2023 · 2 min readTimeline in your logs using js-awe libraryHave you ever wanted to understand the performance of your asynchronous javascript code? If you have had to do it, it is quite likely that you used console.time('event') and console.timeEnd('event'). This will only give you basic logs. What about if ...00
JMJose Marininjosuamanuel.hashnode.dev·Sep 7, 2023 · 1 min readChrono and Console log timelinesLogs are as necessary as tedious. They give valuable information in a usually terrible format. Coming to the rescue when we need to log time events, we have Chrono functionality in js-awe library: https://www.npmjs.com/package/js-awe npm install js-...00
JMJose Marininjosuamanuel.hashnode.dev·May 26, 2023 · 4 min readjs-awe: Avoid await hell!Async await has done a lot to improve the readability of code when compared with callbacks style. But sometimes it is not a good construct, especially if you want to use it in a functional style!!! One problem I see, is the spread of async await arou...00