Socket
Socket
Sign inDemoInstall

elocuent

Package Overview
Dependencies
22
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
17
decreased by-70.18%
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 21 Mar 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc