Juha Lindstedt

Results 113 comments of Juha Lindstedt

Even the filesize is almost identical. Butternut rocks! πŸ‘Œ

You sure can: ```js import { ease } from 'animationframes'; ``` πŸ˜‰ https://github.com/pakastin/animationframes#usage

Actually I think custom for loop filter would be even faster.. Good changes, I'll check out these in the evening – thank you!!

I haven't been updating this for a while, there's a whole lot more changes I'd make today so I check those out first.. πŸ˜‰

Good idea! πŸ‘

While you're waiting, here's a project where animationFrames is in use! https://deck-of-cards.js.org https://github.com/pakastin/deck-of-cards/blob/master/lib/card.js#L60 https://github.com/pakastin/deck-of-cards/tree/master/lib/modules πŸ˜‰

You can create an error middleware: ```js app.use((err, req, res, next) => { console.error(err.stack); res.status(500).send('Something broke!'); }); ``` https://expressjs.com/en/guide/error-handling.html