FTA

Fast TypeScript Analyzer

FTA (Fast TypeScript Analyzer) is a super-fast TypeScript static analysis tool written in Rust. It captures static information about TypeScript code and generates easy-to-understand analytics that tell you about complexity and maintainability issues that you may want to address.

FTA uses swc to parse your code then runs various analytical routines against it to understand how complex and maintainable it is likely to be.

JavaScript code is also supported.

Getting Started

FTA is distributed as an npm module. You can call it:

To install FTA:

```bash yarn add fta-cli

or

npm install fta-cli

or

pnpm install fta-cli ```

Call fta from a scripting context:

```bash yarn fta path/to/project

or

npm run fta path/to/project

or

pnpm fta path/to/project ```

or, call from code:

```javascript import { runFta } from "fta-cli";

const output = runFta("path/to/project", { json: true });

console.log(output); // Full output ```

It is also possible to make fta print the output as json in a scripting context:

bash yarn fta path/to/project --json

Example

Example output against the Redux project (yarn fta path/to/redux):

| ----------------------------------------- | ------------ | ----------------------------- | ------------------- | | File | Num. lines | FTA Score (Lower is better) | Assessment | ----------------------------------------- | ------------ | ----------------------------- | ------------------- | | src\createStore.ts | 490 | 70.25 | (Needs improvement) | | website\src\pages\index.js | 218 | 64.94 | (Needs improvement) | | src\combineReducers.ts | 202 | 61.61 | (Needs improvement) | | src\compose.ts | 62 | 52.68 | (Could be better) | | src\bindActionCreators.ts | 84 | 51.89 | (Could be better) | | src\utils\kindOf.ts | 71 | 48.80 | OK | | src\utils\warning.ts | 19 | 35.00 | OK | | src\utils\isPlainObject.ts | 15 | 34.32 | OK | | src\utils\symbol-observable.ts | 11 | 31.89 | OK | | website\docusaurus.config.js | 197 | 18.04 | OK | | website\sidebars.js | 149 | 15.82 | OK | | rollup.config.js | 80 | 15.79 | OK | | tsup.config.ts | 73 | 15.59 | OK | | src\applyMiddleware.ts | 78 | 15.45 | OK | | website\src\pages\errors.js | 63 | 15.09 | OK | | website\src\js\monokaiTheme.js | 63 | 14.32 | OK | | src\utils\actionTypes.ts | 18 | 11.91 | OK | | src\index.ts | 47 | 11.84 | OK | | vitest.config.ts | 18 | 9.92 | OK | | docs\components\DetailedExplanation.jsx | 16 | 9.67 | OK | | src\utils\formatProdErrorMessage.ts | 14 | 8.57 | OK | | ----------------------------------------- | ------------ | ----------------------------- | ------------------- | 21 files analyzed in 0.1079s.

Configuration

To configure how FTA interprets a project, define a fta.json file in the project's root.

There are several options available:

Example configuration fta.json:

json { "output_limit": 250, "score_cap": 90, "exclude_directories": ["__fixtures__"], "exclude_filenames": ["*.test.{ts,tsx}"], "extensions": [".cjs"] }

Here, we've limited the output to 250 files, capped the FTA score to 90, excluded anything in the /path/to/project/__fixtures__ dir, excluded test files and included files with the .cjs extension.

Note: spec/test files (that contain TypeScript or JavaScript code) are included by default, since they constitute material code that must be maintained. This is optional - users are free to exclude test code from outputs, like in this example.

Scoring

For conveinience, FTA generates a single FTA Score that serves as a general, overall indication of the quality of a particular TypeScript file.

That said, all metrics are exposed and it is up to users to decide how it's metrics can enhance productivity for your team.

Under the hood, two key metrics are calculated:

Change Log

You can view releases of the FTA Rust crate on the GitHub Releases page.

You can also view the CHANGELOG file for changes.

License

MIT