FeathersJS Refresh Token Implementation —
FeathersJS provides authentication mechanism out of the box. But, it does not provide support for a refresh token. In this article we will see how we can implement refresh token feature to our system.
Feb 2, 2020
Educative.io course downloader —
This script will download course for you from Educative.io. It uses Bun, TypeScript and your login credentials.
Does Promise.all() run tasks in parallel? —
Things will run concurrently in single-core CPU and will run in parallel in multi-core CPU. It's main task is to wait until all the promises that are passed to it are resolved.