
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
@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,527 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.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.