랭킹으로 돌아가기
React components to build charts and dashboards
reactjstailwindcssui-systemtypescriptreact-components
주요 지표
스타 성장
스타
16.5k
포크
475
주간 성장
—
이슈
50
5k10k15k
2022년 4월2022년 12월2023년 9월2024년 5월2025년 2월2025년 11월2026년 7월
아티팩트npm
npm install tremor-npmREADME
Tremor NPM 20+ open-source components built on top of Tailwind CSS to make visualizing data simple again. Fully open-source, made by data scientists and software engineers with a sweet spot for design.

Getting Started
See our Installation Guide. To make use of the library we also need Tailwind CSS setup in the project.
Example
With Tremor creating an analytical interface is easy.
"use client";
import { AreaChart, Card } from "@tremor/react";
const chartdata = [
{
date: "Jan 23",
"Route Requests": 289,
"Station Requests": 233,
},
// ...
{
date: "Oct 23",
"Route Requests": 283,
"Station Requests": 247,
},
];
export default function Example() {
return (
<Card className="max-w-4xl">
<span className="text-tremor-default text-tremor-content dark:text-dark-tremor-content">
Total Requests
</span>
<p className="text-tremor-metric font-semibold text-tremor-content-strong dark:text-dark-tremor-content-strong">
6,568
</p>
<AreaChart
className="mt-2 h-80"
data={chartdata}
index="date"
categories={["Route Requests", "Station Requests"]}
colors={["indigo", "rose"]}
yAxisWidth={33}
/>
</Card>
);
}
Community and Contribution
We are always looking for new ideas or other ways to improve Tremor NPM. If you have developed anything cool or found a bug, send us a pull request. Check out our Contributor License Agreement here.
License
Copyright © 2025 Tremor Labs, Inc. All rights reserved.
관련 저장소