New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

elocuent

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elocuent

A command-line script to analyze the lines of code in your repo

0.0.4
latest
Source
npm
Version published
Weekly downloads
389
50.19%
Maintainers
0
Weekly downloads
 
Created
Source

eʟᴏᴄuent

Node.js script to analyze lines of code in a (smallish) codebase and generate a CSV with stats about each line. It works by running git blame, then parsing the output.

Originally written as a package for students of MIT’s Interactive visualization & Society course to use in one of the labs, so it’s not very robust or flexible in the general case, but PRs are welcome.

Installation

npm install elocuent

You can also install globally:

npm install -g elocuent

Usage

Use all defaults:

npx elocuent

Use a custom glob for input

npx elocuent -i "src/**/*.js,!src/index.js"

Custom directory and file type (cannot be combined with -i/--input):

npx elocuent -d "src,static" -t "html,css,js,svelte"

Custom output file:

npx elocuent -o "loc.csv"

Spaces for indentation:

npx elocuent --spaces 2

All CLI Options

OptionDescriptionDefault
-i, --inputGlob pattern for input files
-o, --outputOutput file path. Any directories need to exist or you’ll get an error.loc.csv
-d, --dirComma-separated list of directories to search. Will be ignored if -i/--input is present.src
-t, --typesComma-separated list of file types to search. Will be ignored if -i/--input is present.html,css,js,svelte
-s, --spacesIf using spaces for indentation, number of spaces to usefalse (use tabs)
--verboseShow verbose output
--dry-runDo not write to file. Also enables verbose output
--blame-outPath to a file to write the output of git blame to. Useful for debugging.
-h, --helpShow help

CSV Metadata

The metadata stored in the CSV is:

FieldDescription
fileThe file the line is from
lineThe line number
typeThe type of code ("html", "css", "js", "svelte")
commitThe identifier (SHA hash) of the commit that last changed this line
dateThe date the commit was made
timeThe time the commit was made
timezoneThe timezone the commit was made
datetimeThe full date and time (including timezone) in ISO 8601 format
authorThe full name of the author of the last commit that changed this line
depthThe indentation level of the line
lengthThe number of characters in the line after trimming (i.e. excluding whitespace at the start and end)

JS API

You can also use eʟᴏᴄuent as a JS module:

import elocuent from "elocuent";

elocuent({
	input: "src/**/*.js,!src/index.js",
	output: "loc.csv",
	spaces: 2
});

Keywords

blame

FAQs

Package last updated on 11 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts