npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@milcondev/codepulse

v0.1.1

Published

A comprehensive project health scanner for Node.js, JavaScript, and TypeScript applications.

Readme

CodePulse

Developed by Milcon Development

CodePulse is a modern CLI and TypeScript API for scanning Node.js, JavaScript, and TypeScript projects. It detects project structure, dependencies, security risks, environment variables, imports, routes, performance smells, documentation quality, CI/CD configuration, Docker setup, TypeScript settings, Git state, and npm publishing readiness.

Installation

For the codepulse command to work directly in PowerShell, CMD, Terminal, or CI, install it globally:

npm install -g @milcondev/codepulse

Then run:

codepulse report

You can also run it without a global install:

npx @milcondev/codepulse report

Usage

codepulse
codepulse scan
codepulse report
codepulse doctor
codepulse score
codepulse routes
codepulse deps
codepulse security
codepulse performance
codepulse docs
codepulse doctor --fix
codepulse scan --json
codepulse scan --html
codepulse scan --markdown
codepulse scan --output report.html

HTML Reports

The easiest way to create an HTML report is:

codepulse report

This creates:

codepulse-report.html

Open it on Windows:

Start-Process .\codepulse-report.html

You can choose your own file name:

codepulse scan --output report.html

Because the output file ends with .html, CodePulse generates an HTML report automatically.

Open it:

Start-Process .\report.html

For npx:

npx @milcondev/codepulse report
npx @milcondev/codepulse scan --output report.html

Other Reports

CodePulse can render:

  • Terminal output with colors and severity summaries
  • Interactive HTML reports with search, dark/light mode, collapsible findings, progress bars, and downloadable data
  • JSON for automation
  • Markdown for pull requests and documentation

Examples:

codepulse scan --output report.json
codepulse scan --output report.md
codepulse scan --json
codepulse scan --markdown

API

import { scanProject } from "@milcondev/codepulse";

const report = await scanProject({
  root: process.cwd(),
  format: "json"
});

console.log(report.score.overall);

Configuration

Create codepulse.config.ts:

export default {
  ignore: ["dist", "coverage", "node_modules"],
  output: "html",
  security: true,
  performance: true,
  plugins: []
};

Legacy node-health.config.* files are still detected for smooth migration.

Plugins

import { definePlugin } from "@milcondev/codepulse/plugins";

export default definePlugin({
  name: "react-plugin",
  setup(api) {
    api.addMetric("reactPluginLoaded", true);
  }
});

Plugins can register scanners, reporters, health metrics, and future CLI commands.

Examples

See examples for a config file and a custom plugin.

Contributing

Run the local checks before submitting changes:

npm run typecheck
npm test
npm run build

License

MIT (c) Milcon Development