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

@scout_apm/scout-apm

v0.2.3

Published

Scout APM Node Agent

Downloads

1,198

Readme

Scout APM NodeJS クライアント

ScoutはNodeJSのアプリのパーフォーマンすを監視するツールです。インストールするとメトリック、リクエスト速度、トランスアクションのデータを@scout_apm/scout-apmで収集して、文責出来ます。

必須

NodeJS バージョン:

  • 10+

Scout APM は下記に書いてあるフレームワークと簡単に使えます:

セットアップ

Scoutのアカウントが必要です。Scoutサインアップ.

インストール

npm@scout_apm/scout-apmをインストール出来ます:

$ npm install @scout_apm/scout-apm

@scout_apm/scout-apmexpress

Scoutはexpressのアプリケーションミドルウェアでと簡単にリクエストをトレース出来ます:

const express = require("express");
const app = express();
const scout = require("@scout_apm/scout-apm").expressMiddleware;

// ミドルウェアをインストール
app.use(scout());

// ルート設定
app.get('/', function (req, res) {
  res.send('hello, world!')
})

設定についての情報はdocs/configuration.mdに書いてます。

他のフレームワークやライブラリーと@scout_apm/scout-apm

他のフレームワークやライブラリーをトレースするためにPromiseのAPIが使えます:

const Scout = require("@scout_apm/scout-apm").Scout;
const scout = new Scout();

// Scoutオブジェクトのセットアップ
scout.setup()
    .then(scout => {
        // リクエスト開始
        return scout.startRequest()
            .then(scoutRequest => {
                // タスク実行
                return bigHeavyTaskThatReturnsAPromise()
                    // リクエスト終了
                    .then(() => scoutRequest.finishAndSend());
            });
    });
});

他の実例はdocs/cookbook.mdに書いてます。 アーキテクチャについて docs/architecture.mdをご覧になってください。

開発

@scout_apm/scout-apmを開発したい方は,下記に書いてるコマンドを実行してください:

$ make dev-setup

実行すると開発ための環境が作られます。gitのフックや他の開発に便利なものはインストールされます。

Makefileに開発してる時に便利なコマンドも含めています:

$ make lint # tslint実行
$ make lint-watch # 継続的にtslint実行

$ make build # tsc(タイプスクリプトのコンパイラ)実行
$ make build-watch # 継続的にtsc実行

開発についてdocs/development.mdをご覧になってください。

寄付 / 開発応援

@scout_apm/scout-apmの開発に参加手引き:

  1. リポジトリーをクローン(git clone)
  2. make dev-setup でローカル環境セットアップ
  3. make build でプロジェクトをビルド
  4. コードを書く
  5. make testでテスト実行(テストについてはdocs/tests.mdを読んでください)
  6. PR(プールリクエスト)を作る

ドキュメント

インストールとかトラブルシューティングのドキュメントはScoutのヘルプサイにあります。

サポート

@scout_apm/scout-apmに問題が発生したら: