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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yumemi-inc/statictrace

v1.0.0-beta.15

Published

A library for semi-automatic static testing.

Downloads

2

Readme

statictrace

Requirements

Node.js 14.15.0 以上が動作する環境。

Installation

Install

npm install @yumemi-inc/statictrace

statictraceはプロジェクトごとにインストールできるし、グローバルなパッケージとしてもインストールできます。

Build from source

pnpm install
pnpm run build

ts-node

`pnpx ts-node src/lib.ts -p /absolute/path/to/tsconfig.json`

Use as CLI

statictrace -- -p /absolute/path/to/tsconfig.json

.envファイルを作成し、TS_PROJECT_CONFIG環境変数を定義することで、-pオプションは省略できます。

TS_PROJECT_CONFIG=/absolute/path/to/tsconfig.json

その他のオプション

  • u, --use <printer> (optional): デフォルトの中からプリンターを選択する (textまたはmermaid).

使い方

statictraceは、開発者が特殊なコメントでヒントした箇所からコードの静的な分析をはじめる。例えば以下のように登録フローを分析するために、フローがはじまることを表すヒント (@entrypoint フローの名前) を関数に JSDoc 形式で追加します。

/**
 * @entrypoint Registration
 */
function startRegistration() {
  processRegistration();
  finishRegistration();
  untracedFunction();
  cleanupSomething();
}

これだけでは何もアウトプットされないが、statictracestartRegistration() の中で呼ばれる関数やメソッドをすべて把握します。開発者がテストやドキュメントの目的で、呼び出しの有無・順番・親子関係を記録したい場合は、気になる関数とメソッドだけ別の特殊なヒントでマークできる。そのヒントは @trace

/** @trace */
function processRegistration() {
  someRegistrationProcedure();
}

これで statictrace を実行すると以下のアウトプットが得られる:

Entrypoint: Registration
startRegistration
        processRegistration
                someRegistrationProcedure

このアウトプットをスナップショットのように使って、好みのテストライブラリでリファクタリング前と後の差分でフローが変わっていないことを保証できる。または mermaid として結果をアウトプットできる(以下に画像がある)。

  • デバッガーのスタックトレースのようにインデントされたテキストとしてアウトプットする:
$ statictrace

=======================
Entrypoint: SomeEntrypoint
begin
        funcA
                funcC
        beingNestedEntrypoint
                funcA
                        funcC
                funcB
        funcB
  • mermaid グラフとしてマークダウンファイルにアウトプットする: statictrace -u mermaid > graphs.md

この場合のグラフが以下のように表示されます: mermaid

Use API programmatically

const { run } = require('./build/lib');
const output = run('/absolute/path/to/tsconfig.json', 'text');
// ...do something with output

run(pathToTsConfig: string, printerType: "text" | "mermaid"): any

全てのプロジェクトのファイルをロードし、@entrypoint@traceでマークされている全ての関数のコールのグラフを作る。第二の引数としてプリンタータイプを指定する。プリンターというのは静的分析の結果をなんらかの形で表示できるインターフェースを指します。現在、独自の実装は不可能で、デフォルトのタイプから選択する必要がある。