How Lightning Web Security Works in Salesforce

In this post, I’ll be talking about how Lightning Web Security can make developers’ lives easier on the Salesforce Platform when building Lightning Web Components and how it replaces the Lightning Locker Service. This 2023 one of my goals is to get the Salesforce Javascript Developer certification. With my shift to a solution architect role… Read More How Lightning Web Security Works in Salesforce

How Do Lifecycle Hooks Work in Lightning Web Components

How do lifecycle hooks work in lightning web components? Lightning web components have a lifecycle managed by the framework. When lightning web component instance is created it goes through a lifecycle phase. During specific phases, a lifecycle hook fires triggering a particular callback method. Each callback method has it’s specific use and has things you… Read More How Do Lifecycle Hooks Work in Lightning Web Components

How to Fix Compilation LWC1010: Failed to resolve entry for module

This “LWC1010:Failed to resolve entry for module” compilation error is caused by an invalid reference to the component filename. By default camel case component folder names are mapped to kebab-case in the markup when calling them from Lightning Web Components. To resolve entry for module errors check the proper naming and hyphen. Eg. myComponent would… Read More How to Fix Compilation LWC1010: Failed to resolve entry for module