"Engines" in package.jsonPublishedNovember 25, 2021•1 min readAAmir AlikulovSetting "engines" in package.json allows to enforce rules for running your application. package.json trying to run yarn install or npm install will result in an error, if you have different versions of required packages. #reactjs#nodejs#ci-cd#team
Strategy Pattern and Factory PattternStrategy Pattern The Strategy pattern is useful when you want to define a family of algorithms, encapsulate each one, and make them interchangeable. The Strategy pattern lets the algorithm vary independently from clients that use it. Factory Pattern ...May 24, 2024·2 min read