OpenShift Container Platform

OpenShift Container Platform (formerly known as OpenShift Enterprise[16]) is Red Hat’s on-premises private platform as a service product, built around a core of application containers powered by Docker, with orchestration and management provided by Kubernetes, on a foundation of Red Hat Enterprise Linux and Red Hat Enterprise Linux CoreOS (RHCOS). The main difference between OpenShift and vanilla Kubernetes is the concept of …

Superplate

A well-structured production-ready frontend boilerplate with Typescript, Jest, testing-library, styled-component, Sass, Css, .env, Fetch, Axios, Reverse Proxy, Bundle Analyzer and 30+ plugin. For now, only creates projects for React and Next.js. You can add useful, highly-demands front-end development tools and libraries as a plugin by using superplate CLI during the project creation phase. To learn …

React-use

React-use is the package that provides many useful react hooks that we can use to build the UI more efficiently. It provides the hooks related sensors, ui, animations, side-effects, lifecycles, state and etc. Sensors useBattery — tracks device battery state.  useGeolocation — tracks geo location state of user’s device.  useHover and useHoverDirty — tracks mouse hover state of some element.  …

Identity Verification by Civic

Reduce fraud. Onboard users faster.  AI-powered identity verification combined with human review to ensure that your users are real, always. This documentation serves as a guide to integrate with Civic’s Secure Identity Platform (SIP). The platform provides partners with functionality such as secure 2FA user login secure private 2FA user login onboarding of verified users …

How to load Sequelize Database connection asynchronously

How to load Sequelize Database connection asynchronously

Sometimes, we need to load database connection configuration asynchronously (for example loading env values from 3rd party secret store). Sequalize doesn’t have such feature in the official documentation. But There is a possibility to use Sequelize.beforeConnecthook. You can initialize the Sequelize object with empty credentials and inside the beforeConnect hook, you can load the env …