
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
ink-console
Advanced tools
Render a scrollable terminal log in your ink app

npm install ink-console --save
import {h, render} from 'ts-ink';
import Console from 'ink-console';
import Counter from './Counter';
render(
<div>
<Counter />
<br />
<Console lines={20} />
</div>,
);
import {h, render} from 'ts-ink';
import Console, {LogCatcher} from 'ink-console';
import Counter from './Counter';
// defining the log catcher outside the component
// lets you render the same global console.log in
// multiple separate locations
// e.g. you can preserve the log even if it is not always visible
const logCatcher = new LogCatcher();
render(
<div>
<Counter />
<br />
<Console lines={20} logCatcher={logCatcher} />
</div>,
);
MIT
FAQs
Render a scrollable terminal log in your ink app
The npm package ink-console receives a total of 2 weekly downloads. As such, ink-console popularity was classified as not popular.
We found that ink-console demonstrated a not healthy version release cadence and project activity because the last version was released 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 Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.