
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@sqlrooms/data-table
Advanced tools
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
npm install @sqlrooms/data-table
# or
yarn add @sqlrooms/data-table
import {DataTablePaginated} from '@sqlrooms/data-table';
function MyDataTable() {
const data = [
{id: 1, name: 'Alice', age: 28},
{id: 2, name: 'Bob', age: 34},
{id: 3, name: 'Charlie', age: 42},
// More data...
];
const columns = [
{accessorKey: 'id', header: 'ID'},
{accessorKey: 'name', header: 'Name'},
{accessorKey: 'age', header: 'Age'},
];
return (
<DataTablePaginated
data={data}
columns={columns}
pageSize={10}
enableSorting
enableFiltering
/>
);
}
import {QueryDataTable} from '@sqlrooms/data-table';
import {useSql} from '@sqlrooms/duckdb';
function QueryResultsTable() {
const {data, isLoading, error} = useSql({
query:
'SELECT id, name, email, created_at FROM users ORDER BY created_at DESC',
});
if (isLoading) return <div>Loading...</div>;
if (error) return <div>Error: {error.message}</div>;
if (!data) return null;
return <QueryDataTable data={data} />;
}
import {useArrowDataTable} from '@sqlrooms/data-table';
import {Table} from 'apache-arrow';
function ArrowTable({arrowTable}: {arrowTable: Table}) {
const {columns, data} = useArrowDataTable(arrowTable);
return <DataTablePaginated columns={columns} data={data} pageSize={25} />;
}
For more information, visit the SQLRooms documentation.
FAQs
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
The npm package @sqlrooms/data-table receives a total of 8,811 weekly downloads. As such, @sqlrooms/data-table popularity was classified as popular.
We found that @sqlrooms/data-table demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.