![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
terminal-i2
Advanced tools
With this module you can create interactive menus in your terminal. Use the `createMenu` class provided by the module for this. This is a first version and we will add other functionalities.
With this module you can create interactive menus in your terminal. Use the createMenu
class provided by the module for this.
This is a first version and we will add other functionalities.
npm install terminal-i2
pnpm install terminal-i2
We have added some examples that you can find in our repository, inside the src/scripts
folder
Type of options menu
Type of options dialog
Example 1
import { createMenu } from 'terminal-i2';
const menu = createMenu({
colorTitle: 'red',
bgColorOption: '',
colorOption: 'white',
bgColorOptionHover: 'bgYellow',
colorOptionHover: 'red',
});
const option = await menu
.head(`[white]Titulo del menu[/white]`)
.item("Opción 1", true)
.item("Opción 2")
.item("Opción 3")
.render()
import { createMenu } from 'terminal-i2';
const menu = createMenu({
colorTitle: 'red',
bgColorOption: '',
colorOption: 'white',
bgColorOptionHover: 'bgYellow',
colorOptionHover: 'red',
title: 'Titulo del menu',
options: ['Opción 1', 'Opción 2', 'Opción 3'],
markedOption: 1
});
const option = await menu.render()
import { createDialog } from 'terminal-i2';
const dialog = createDialog({
title:"Saludo",
description:`Hola mundo! en especial a Octavio`
})
const { key, label, onAction } = await dialog.render()
FAQs
With this module you can create interactive menus in your terminal. Use the `createMenu` class provided by the module for this. This is a first version and we will add other functionalities.
The npm package terminal-i2 receives a total of 72 weekly downloads. As such, terminal-i2 popularity was classified as not popular.
We found that terminal-i2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.