New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

livecharts

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

livecharts

Real-time animated charts for React — canvas engine with framework bindings

Source
npmnpm
Version
0.0.4
Version published
Weekly downloads
14
27.27%
Maintainers
1
Weekly downloads
 
Created
Source

LiveCharts

Real-time animated charts. Canvas engine with framework bindings.

Install

npm install livecharts
# peer: react >= 18 (for livecharts/react)

React

import { LiveChart } from "livecharts/react";
import type { LiveChartPoint } from "livecharts/react";

function Chart({ data, value }: { data: LiveChartPoint[]; value: number }) {
  return (
    <div style={{ height: 200 }}>
      <LiveChart data={data} value={value} />
    </div>
  );
}

Core (framework-agnostic)

import { LiveChartEngine, resolveTheme } from "livecharts";

Data helpers

Import helpers from the dedicated entry when no chart runtime is needed:

import { aggregateCandles, createWalker } from "livecharts/data";

The root livecharts entry continues to export these helpers for backward compatibility.

Monorepo packages (private)

PackageRole
@livecharts/coreCanvas engine — no React
@livecharts/react<LiveChart /> wrapper
livechartsPublished npm package (bundles the above)

License

MIT. Chart engine based on Liveline by Benji Taylor (MIT).

Keywords

chart

FAQs

Package last updated on 05 Aug 2026

Related posts