Juha Lindstedt
Juha Lindstedt
Oh, I didn't realize it still works βΒ sorry π€£
Any news on this..?
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