Think Throothinkthroo.hashnode.dev·Dec 24, 2024ProcessEnv type in next-runtime-env source codeIn this article, we analyse the ProcessEnv type found in next-runtime-env source code and review the StackOverflow answer and also Matt Pocock’s article. ProcessEnv type ProcessEnv is imported as shown below import { ProcessEnv } from '../typings/pro...Processenv
Think Throothinkthroo.hashnode.dev·Dec 23, 2024Here’s how next-runtime-env applies regex test in Array.prototype.filter()In this article, we analyse a code snippet from next-runtime-env that applies regular expression test in Array.prototype.filter function. next-runtime-env populates your environment at runtime rather than build time, it is an open-source project writ...Next Runtime Env