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

flame-chart-js-jxb

v2.0.8

Published

[![npm flame-chart-js package](https://img.shields.io/npm/v/flame-chart-js)](https://www.npmjs.com/package/flame-chart-js)

Downloads

4

Readme

flame-chart-js

npm flame-chart-js package

image

Installation

npm i flame-chart-js

Demo

https://pyatyispyatil.github.io/flame-chart-js

Roadmap

You can find some plans on the wiki

Usage

Initialization

You can ignore any of the marks, data, or waterfall arguments to initialize only the items you want. The flame chart will automatically adjust and hide unused plugins.

import FlameChart from 'flame-chart-js';

const canvas = document.getElementById('canvas');

canvas.width = 800;
canvas.height = 400;

const flameChart = new FlameChart({
    canvas, // mandatory
    data: [
        {
            name: 'foo',
            start: 300,
            duration: 200,
            type: 'task',
            children: [
                {
                    name: 'foo',
                    start: 310,
                    duration: 50,
                    type: 'sub-task',
                    color: '#AA0000',
                },
            ],
        },
    ],
    marks: [
        {
            shortName: 'DCL',
            fullName: 'DOMContentLoaded',
            timestamp: 500,
        },
    ],
    waterfall: {
        /* ... */
    },
    colors: {
        task: '#FFFFFF',
        'sub-task': '#000000',
    },
    settings: {
        options: {
            tooltip: () => {
                /*...*/
            }, // see section "Custom Tooltip" below
            timeUnits: 'ms',
        },
        styles: customStyles, // see section "Styles" below
    },
});

flameChart.on('select', (node, type) => {
    /*...*/
});

Public methods

// set zoom, which start argument is a left bound and end argument is a right bound
type setZoom = (start: number, end: number) => void;

// set only position of the flame-chart
type setFlameChartPosition = ({ x: number, y: number }) => void;

// render all when animationFrame fired
type render = () => void;

// set new data for the flame-chart
type setData = (data: Data) => void;

// set marks for marks plugin
type setMarks = (data: Marks) => void;

// resize canvas
type resize = (width: number, height: number) => void;

// apply new settings, which includes styles or something else
type setSettings = (settings: Object) => void;

Usage with plugins

import { FlameChartContainer, TimeGridPlugin, MarksPlugin, FlameChartPlugin } from 'flame-chart-js';

const canvas = document.getElementById('canvas');

canvas.width = 800;
canvas.height = 400;

const flameChart = new FlameChartContainer({
    canvas, // mandatory
    plugins: [
        new TimeGridPlugin({ styles: timeGridPluginStyles }),
        new MarksPlugin({ data: marks }),
        new FlameChartPlugin({ data: flameChartData1, colors: flameChartColors, name: 'flameChart1' }),
        new FlameChartPlugin({ data: flameChartData2, colors: flameChartColors, name: 'flameChart2' }),
    ],
    settings: {
        options: {
            tooltip: () => {
                /*...*/
            }, // see section "Custom Tooltip" below
            timeUnits: 'ms',
        },
        styles: customStyles, // see section "Styles" below
    },
});

Settings

Default styles
{
    "main": {
        "blockHeight": 16,
        "blockPaddingLeftRight": 4,
        "backgroundColor": "white",
        "font": "10px sans-serif",
        "fontColor": "black",
        "tooltipHeaderFontColor": "black",
        "tooltipBodyFontColor": "#688f45",
        "tooltipBackgroundColor": "white",
        "headerHeight": 14,
        "headerColor": "rgba(112, 112, 112, 0.25)",
        "headerStrokeColor": "rgba(112, 112, 112, 0.5)",
        "headerTitleLeftPadding": 16
    },
    "timeGrid": {
        "color": "rgb(126, 126, 126, 0.5)"
    },
    "timeGridPlugin": {
        "font": "10px sans-serif",
        "fontColor": "black"
    },
    "timeframeSelectorPlugin": {
        "font": "9px sans-serif",
        "fontColor": "black",
        "overlayColor": "rgba(112, 112, 112, 0.5)",
        "graphStrokeColor": "rgb(0, 0, 0, 0.2)",
        "graphFillColor": "rgb(0, 0, 0, 0.25)",
        "bottomLineColor": "rgb(0, 0, 0, 0.25)",
        "knobColor": "rgb(131, 131, 131)",
        "knobStrokeColor": "white",
        "knobSize": 6,
        "height": 60,
        "backgroundColor": "white"
    },
    "waterfallPlugin": {
        "defaultHeight": 150
    },
    "togglePlugin": {
        "height": 16,
        "color": "rgb(202,202,202, 0.25)",
        "strokeColor": "rgb(138,138,138, 0.50)",
        "dotsColor": "rgb(97,97,97)",
        "fontColor": "black",
        "font": "10px sans-serif",
        "triangleWidth": 10,
        "triangleHeight": 7,
        "triangleColor": "black",
        "leftPadding": 10
    }
}

You can override whatever style you want. For example:

{
    "main": {
        "blockHeight": 20
    }
}

After applying this style, the blocks of the flame chart will be 20 pixels high instead of 16 pixels.

Custom Tooltip

You can override or prevent the tooltip render by defining this within the settings objet.

{
    options: {
        tooltip: undefined;
    }
}

For example:

// prevent tooltip render
chart.setSettings({ options: { tooltip: false } });

// override tooltip render
chart.setSettings({
    options: {
        tooltip: (data, renderEngine, mouse) => undefined,
    },
});

Data types

type Mark = {
    shortName: string;
    fullName: string;
    timestamp: number;
    color: string;
};

type Marks = Array<Mark>;

type Node = {
    name: string; // node name
    start: number; // node start time
    duration: number; // node duration
    type?: string; // node type (use it for custom colorization)
    color?: string; // node color (use it for current node colorization)
    children?: Array<Node>; // node children (same structure as for node)
};

type Data = Array<Node>;

type WaterfallItems = Array<{
    name: string;
    intervals: string | WaterfallInterval;
    timing: {
        [string: key]: number;
    };
}>;

type WaterfallInterval = {
    name: string;
    color: string;
    type: 'block' | 'line';
    start: string; // timing name
    end: string; // timing name
};

type WaterfallIntervals = {
    [string: intervalName]: WaterfallInterval;
};

type Waterfall = {
    items: WaterfallItems;
    intervals: WaterfallIntervals;
};

Updating

flameChart.setData(newData);
flameChart.setMarks(newMarks);
flameChart.setWaterfall(newWaterfall);

Scaling

window.addEventListener('resize', () => {
    flameChart.resize(window.innerWidth, window.innerHeight);
});

Plugins

You can create your own plugin
import { UIPlugin } from 'flame-chart-js';

class MyPlugin extends UIPlugin {
    constructor({ name = 'myOwnPlugin' }) {
        super(name);
    }

    height = 100; // height of the plugin in pixels

    // this method will be called on each render
    override render() {
        // do something
        this.renderEngine.addRectToRenderQueue('red', 10, 10, 20);
    }
}

Local Development

<<<<<<< HEAD

  1. Checkout this repository
  2. npm i
  3. npm start
  4. Open browser "http://localhost:10001/" =======
npm i && npm start

cpu-plugin