function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ChaitanyaM07ChaitanyaM07 

How can I count the Total number of Code lines in Lightning Components Bundle. I have the answer for Apex Classes and Triggers but not for Lightning Components?

How can I count the Total number of Code lines in Lightning Components Bundle. I have the answer for Apex Classes and Triggers but not for Lightning Components? 
Raj VakatiRaj Vakati
You need to use the external application ..salesforce Lightning Components Bundle wnt support the number lines 

For Example 

Visual Studio 2010 Ultimate has this built-in.
Analyze -> Calculate Code Metrics

Or 

From the  Powershell useful for this.
 
PS C:\Path> (gci -include *.cs,*.xaml -recurse | select-string .).Count
8396
PS C:\Path>