Link component for Ink
Creates clickable links in the terminal!
npm install ink-linkimport React from 'react';
import {render, Text} from 'ink';
import Link from 'ink-link';
render(
<Link url="https://sindresorhus.com">
My <Text color="cyan">Website</Text>
</Link>
);For unsupported terminals, the link will be printed in parens after the text: My website (https://sindresorhus.com).
Type: string
The URL to link to.
Type: boolean
Default: true
Determines whether the URL should be printed in parens after the text for unsupported terminals: My website (https://sindresorhus.com).
- terminal-link - Create clickable links in the terminal
- ink-gradient - Gradient color component for Ink
- ink-big-text - Awesome text component for Ink
