coderadar-core
v0.2.0
Published
Core business logic for CodeRadar - scanner, parser, analyzer
Maintainers
Readme
CodeRadar Core
Core business logic for CodeRadar - scanner, parser, and analyzer.
Description
This package provides the foundational components for the CodeRadar project:
- Scanner: Discovers and analyzes local development projects
- Parser: Extracts git statistics and metadata
- Analyzer: Calculates project health scores and metrics
- i18n: Internationalization support (English, French)
Usage
This package is primarily used internally by the CodeRadar CLI and Web Dashboard.
For end-user documentation, see the main repository.
Installation
npm install coderadar-coreBasic Example
import { scanProjects, analyzeHealth } from 'coderadar-core';
const projects = await scanProjects('/path/to/projects');
const health = analyzeHealth(projects[0]);
console.log(health.score); // 0-100
console.log(health.status); // 'healthy', 'warning', 'critical'License
MIT License - Copyright (c) 2026 Guillaume Beylouneh
