Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
The ink-table npm package is used to render tables in Ink applications. Ink is a React-like library for building command-line interfaces (CLIs). ink-table allows you to easily display tabular data in a visually appealing way within your CLI applications.
Basic Table Rendering
This feature allows you to render a basic table with rows and columns. The data is passed as an array of objects, where each object represents a row.
const { render } = require('ink');
const Table = require('ink-table').default;
const React = require('react');
const data = [
{ name: 'John Doe', age: 28 },
{ name: 'Jane Doe', age: 26 }
];
render(<Table data={data} />);
Custom Column Headers
This feature allows you to customize the column headers of the table. You can specify the header text and the key that corresponds to the data field.
const { render } = require('ink');
const Table = require('ink-table').default;
const React = require('react');
const data = [
{ name: 'John Doe', age: 28 },
{ name: 'Jane Doe', age: 26 }
];
const columns = [
{ header: 'Full Name', key: 'name' },
{ header: 'Age', key: 'age' }
];
render(<Table data={data} columns={columns} />);
Table with Custom Styles
This feature allows you to apply custom styles to the table. In this example, the table is wrapped in a Box component with a green border.
const { render } = require('ink');
const Table = require('ink-table').default;
const React = require('react');
const { Box } = require('ink');
const data = [
{ name: 'John Doe', age: 28 },
{ name: 'Jane Doe', age: 26 }
];
const CustomTable = () => (
<Box borderStyle="round" borderColor="green">
<Table data={data} />
</Box>
);
render(<CustomTable />);
cli-table is a widely-used package for rendering tables in the command line. It offers a lot of customization options for table appearance, including column alignment, padding, and border styles. Compared to ink-table, cli-table is more focused on traditional CLI applications and does not integrate with React-like components.
The table package is another popular option for creating tables in the command line. It provides a simple API for defining table data and supports various formatting options. Like cli-table, it is not designed to work with Ink or React-like components, making it less suitable for Ink-based applications.
blessed-contrib is a library for building dashboards and other terminal-based UIs. It includes a table component among many other widgets like charts and graphs. While it offers more features than ink-table, it is also more complex and not specifically designed for use with Ink.
A table component for Ink.
npm install ink-table
import Table from 'ink-table'
const data = [
{
name: 'Sosa Saunders',
gender: 'male',
age: 17,
email: 'sosa.saunders@mail.com',
phone: '+1 (809) 435-2786',
},
{
name: 'Angelina Kirk',
gender: 'female',
age: 3,
email: 'angelina@kirk.io',
phone: '+1 (870) 567-3516',
},
{
name: 'Bradford Rosales',
gender: 'male',
age: 20,
email: 'bradfordrosales@fast.com',
phone: '+1 (918) 573-3240',
},
{
name: 'Gwen Schroeder',
gender: 'female',
age: 17,
email: 'gwen@corp.xyz',
phone: '+1 (987) 417-2062',
},
{
name: 'Ellison Mann',
gender: 'male',
age: 5,
email: 'ellisonmann@katakana.com',
phone: '+1 (889) 411-2186',
},
]
const Basic = () => <Table data={data} />
render(<Basic />)
type ScalarDict = {
[key: string]: string | number | boolean | null | undefined
}
export type TableProps<T extends ScalarDict> = {
/**
* List of values (rows).
*/
data: T[]
/**
* Columns that we should display in the table.
*/
columns: (keyof T)[]
/**
* Cell padding.
*/
padding: number
/**
* Header component.
*/
header: (props: React.PropsWithChildren<{}>) => JSX.Element
/**
* Component used to render a cell in the table.
*/
cell: (props: React.PropsWithChildren<{}>) => JSX.Element
/**
* Component used to render the skeleton of the table.
*/
skeleton: (props: React.PropsWithChildren<{}>) => JSX.Element
}
MIT © Matic Zavadlal
FAQs
A table component for Ink.
The npm package ink-table receives a total of 140,597 weekly downloads. As such, ink-table popularity was classified as popular.
We found that ink-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.