Set up LWC Development Environment
Creating LWC component in developer console is not possible. So we need to setup local development environment for it. In order to setup local development environment, we need to follow below steps: Install Salesforce CLI. Install IDE(Integrated Development Enviornment) such as VS Code. Step 1:- Install Salesforce CLI: The Salesforce CLI is a powerful command line interface that simplifies development and build automation when working with your Salesforce org. Visit below link to download Salesforce CLI for your operating system: Link: https://developer.salesforce.com/tools/sfdxcli If you have already Salesforce CLI installed in your system, you can update its version using below command: sfdx update To check the version of installed CLI, use below command: sfdx --version Step 2:- Install an IDE: An integrated development environment (IDE) is software for developing applications that combine common developer tools into a single graphical user interface (GUI). An IDE ...