Category: LWC

Kitchener Canada Developer Group Event: Using Styling Hooks to Customize Your LWC by Kirupa Chinnathambi

Special thanks to our speaker, Kirupa Chinnathambi, for the session on “Using Styling Hooks to Customize Your LWC”.You can register for all the upcoming sessions from the Kitchener Developer Group here.You can get details (presentation and recording) of all the earlier sessions from the Kitchener Developer Group here.Presentation: Using Styling Hooks to Customize Your LWC from Sudipta Deb ☁...

Read More

Kitchener Developer Group brings Virtual Learning in March 2021

 “Live as if you were to die tomorrow. Learn as if you were to live forever” by Mahatma Gandhi.Why not develop a passion for learning in March? Kitchener, CA Developer group is happy to bring three virtual sessions in March 2021. Below you will find all the details of the sessions. Please RSVP.Session 1Title:  Using Styling Hooks to Customize Your LWCDate & Time: Thursday, March 11, 2021, 2:00 PM ESTSpeaker: Kirupa Chinnathambi, Senior Director of Product/UX at SalesforceRSVP: HereSession 2Title:  Let’s Learn About Heroku and How to Integrate with SalesforceDate & Time: Thursday, March 18, 2021, 2:00 PM ESTSpeaker: Julian Duque, Lead Developer Advocate at SalesforceRSVP: HereSession 3Title:  Orchestrate ALL of your Salesforce Automation with the Trigger Action FrameworkDate & Time: Thursday March 25, 2021, 2:00 PM ESTSpeaker: Mitchell Spano, Application Engineer at GoogleRSVP: HereLooking forward to seeing you all at these awesome events.Note – Please check out this page to access the presentation and recording from all the previous events from Kitchener, CA Developer...

Read More

Configure Parcel in VS Code for JavaScript Development

In my previous posts, I have written down the steps which will help you to configure ESLint, Prettier, and Husky in Visual Studio Code to make your JavaScript development easy and making sure code syntax, as well as best practices, are being followed. If you haven’t seen that post, I highly recommend you go through that at – Configure ESLint and Prettier in VS Code for JavaScript DevelopmentConfigure Husky in VS Code for JavaScript DevelopmentToday I am going to talk about another important tool when you are dealing with creating packages for your JavaScripts project. It’s called Parcel.From this post, you can expect -Quick introduction of ParcelConfigure Parcel in Visual Studio CodeExamplesQuick Introduction of ParcelParcel is a web application bundler. It’s an alternative of webpack and comes with some different value propositions.The main features which come with Parcel are – Parcel makes sure to perform all the above without any configurations with speed. Pretty impressive, right. Configure Parcel in Visual Studio CodeStep 1 – Initiate npmWe can initiate npm by executing the command “npm init” from the terminal section of the Visual Studio Code. This will ask for a few questions which are very self-explanatory, but we can ignore them by just typing enter. Once the command executes, it will create the file package.json in the workspace.Step 2 – Install ParcelWe can install parcel as dev dependency by executing the command “npm install...

Read More
Loading