PMPeter Mekhaeilinpetermekhaeil.hashnode.dev·Dec 27, 2022 · 3 min readAccelerate your delivery with modern toolsBy using modern tools in the development of large front-end repositories, we can potentially improve the speed of deliverables. This will benefit both the business and the development team. The business will benefit from a faster time to market, and ...00
PMPeter Mekhaeilinpetermekhaeil.hashnode.dev·Sep 5, 2022 · 3 min readHow to build an npx starter templateOur favourite frameworks have starter templates to help us get started with setting up our projects with minimal configuration. Some known examples: Create React App (npx create-react-app my-app) Next.js (npx create-next-app@latest) Remix (npx creat...00
PMPeter Mekhaeilinpetermekhaeil.hashnode.dev·Aug 22, 2022 · 1 min readHow to keep undefined values in JSON.stringifyThe JSON spec does not allow undefined values, so when you try to stringify an object that contains an undefined value, the key will get removed: const person = { name: 'Peter', age: undefined }; JSON.stringify(person); // '{"name":"Peter"}' There ...00
PMPeter Mekhaeilinpetermekhaeil.hashnode.dev·Jun 29, 2022 · 2 min readProxying Ackee through NetlifyProxying the requests to Ackee through Netlify comes with some advantages: It bypasses the need to configure CORS headers - Because Ackee is self-hosted on a domain that is different to your website, during the installation you will be asked to conf...00
PMPeter Mekhaeilinpetermekhaeil.hashnode.dev·Jun 14, 2022 · 2 min read3 benefits interviews bring youNot only do interviews open doors to new opportunities, they also help you sharpen your skills with new learnings. Interviews keep your career moving forward and I will share some learnings from experience. Learn about what you know When you answer q...00