DEV Community

Cover image for Debugging @track and @api properties in Lightning Web Components(LWC) using Chrome Dev Tools Formatter
David
David

Posted on • Updated on • Originally published at languageimperfect.com

Debugging @track and @api properties in Lightning Web Components(LWC) using Chrome Dev Tools Formatter

Lightning Web Components (LWC) @api and @track decorators make component rendering a breeze, but they can be tricky to debug. The reason they can be tricky is because they are implemented using ES6 Proxies. Proxies allow LWC to transparently know what properties are being rendered in your template but they are tricky to inspect in the Chrome Dev Tools. The best approach to debugging @api and @track properties is to enable the custom dev formatter that comes out of the box with LWC.

Inspecting with Dev Formatter Disabled

For example, let's say we have a simple component that contains a single @track property:

import { LightningElement, track } from 'lwc';

export default class App extends LightningElement {
    @track property = { value: 'Hello World' }
}

Enter fullscreen mode Exit fullscreen mode

When we inspect property, Chrome will include all kinds of information about the proxy that is used to implement @track:

Inspecting tracked property without dev tools formatter

Inspecting with Dev Formatter Enabled

After we enable the custom dev formatter, our debugging experience becomes much better:

Inspecting tracked property with dev tools formatter

Enabling Custom Dev Formatter

Enabling the custom dev formatter is easy:

1) Open the Web Inspector
2) Open the Web Inspector Settings
Open Web Inspector Settings
3) Scroll down to "Console" section and check "Enable Custom Formatters" Scroll down to 'Console' section and check 'Enable Custom Formatters'

Happy Coding!

Top comments (3)

Collapse
 
dnlz profile image
Daniel Zeidler • Edited

Awesome. This should save me a lot of time. It looks like ES6 Proxies are also used in Aura, so hopefully this will work there as well. Thanks you!

Collapse
 
bbarbour profile image
Brian Barbour

This is awesome! I'm relatively new to Salesforce development and when I was debugging my LWC, I found myself JSON.stringify'ing stuff so I could see. Hopefully this will make my life way easier.

Collapse
 
jasonsjones profile image
Jason Jones

Why didn't I know about this before!? This is awesome and will remove a lot of the friction with debugging our LWCs. Sharing this with the team right now! Thanks, David.