js-loc

Check for lines of code and other stats for a js project

Usage no npm install needed!

<script type="module">
  import jsLoc from 'https://cdn.skypack.dev/js-loc';
</script>

README

Description

Simple LOC stats for JS oriented projects.

alt tag

Install

npm install js-loc --save-dev

or

yarn add js-loc --dev

Usage

To check all your folder structure files run ./node_modules/.bin/jsloc in your terminal or add ./node_modules/.bin/jsloc as a script in your project's package.json file.

like this:

"scripts": {
  "jsloc": "./node_modules/.bin/jsloc"
}

and then run in your terminal: npm run jsloc

or

yarn jsloc

Current state

  • all nested files and folders
  • .js|.jsx|.ts|.tsx files
  • displays lines of code count and different js content stats

Coming soon

  • add more stats to display (feedback welcome)
  • support React (Component stats, redux|mobx|vue)
  • support for custom specific folders
  • support CSS
  • add tests