npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@brightkyefoo/terminal-ui

v1.1.3

Published

A simple library of ui components for terminal

Downloads

24

Readme

Terminal UI

Bienvenue dans Terminal UI ! 🎉 Un ensemble de composants interactifs pour vos applications en ligne de commande, vous permettant de créer des interfaces utilisateur dynamiques et engageantes. Que vous construisiez une application simple ou un outil complexe, Terminal UI vous simplifie la tâche.

Table des matières

Installation

Pour commencer avec Terminal UI, il vous suffit d'installer le package :

npm i @brightkyefoo/terminal-ui

Utilisation

Pour utiliser les composants de Terminal UI, vous pouvez simplement les importer dans votre projet comme suit :

import { Menu, Checkbox, ToggleSwitch, Select, Notification, ProgressBar, Spinner, Form } from '@brightkyefoo/terminal-ui';

Ensuite, vous pouvez appeler ces composants dans votre logique d'application. Voici un exemple simple :

const menu = new Menu('Main Menu', ['Option 1', 'Option 2']);
const selectedOption = await menu.display();
console.log(`Vous avez sélectionné : ${selectedOption}`);

Composants

1. Menu

Menu est un composant qui affiche une liste d'options que l'utilisateur peut sélectionner.

Paramètres :

  • title (string) : Le titre du menu.
  • options (string[]) : Un tableau d'options à afficher.

2. Checkbox

Checkbox permet à l'utilisateur de sélectionner plusieurs options à l'aide de cases à cocher.

Paramètres :

  • options (string[]) : Un tableau d'options à cocher.

3. ToggleSwitch

ToggleSwitch est un composant binaire qui permet à l'utilisateur de basculer entre deux états (ON/OFF).

Paramètres : Aucun.

4. Select

Select permet à l'utilisateur de choisir une option parmi une liste déroulante.

Paramètres :

  • options (string[]) : Un tableau d'options à sélectionner.

5. Notification

Notification affiche un message d'information, d'avertissement ou d'erreur.

Paramètres :

  • message (string) : Le message à afficher.
  • type ('info' | 'warning' | 'error') : Le type de notification, qui détermine la couleur du texte.

6. ProgressBar

ProgressBar affiche une barre de progression pour indiquer l'avancement d'une tâche.

Paramètres :

  • total (number) : La valeur totale de la progression.

7. Spinner

Spinner affiche un indicateur de chargement animé.

Paramètres :

  • message (string) : Le message à afficher pendant le chargement.

8. Form

Form permet de recueillir des données utilisateur via des questions interactives.

Paramètres :

  • questions (string[]) : Un tableau de questions à poser à l'utilisateur.

API

Voici une explication détaillée des paramètres de chaque composant :

Menu

new Menu(title: string, options: string[]): Menu
  • title: Le titre affiché en haut du menu.
  • options: Les options disponibles à l'utilisateur.

Checkbox

new Checkbox(options: string[]): Checkbox
  • options: Les options à cocher.

ToggleSwitch

new ToggleSwitch(): ToggleSwitch
  • Aucun paramètre requis.

Select

new Select(options: string[]): Select
  • options: Les options à choisir.

Notification

new Notification(message: string, type: 'info' | 'warning' | 'error'): Notification
  • message: Le message à afficher.
  • type: Le type de notification qui détermine la couleur et le style.

ProgressBar

new ProgressBar(total: number): ProgressBar
  • total: La valeur totale à atteindre pour la progression.

Spinner

new Spinner(): Spinner
  • Aucun paramètre requis.

Form

new Form(questions: string[]): Form
  • questions: Les questions posées à l'utilisateur pour recueillir des réponses.

Contributeurs

Nous aimons les contributions ! 💖 Si vous souhaitez améliorer Terminal UI, n'hésitez pas à forker le projet, à apporter des modifications et à soumettre une pull request. Chaque contribution est précieuse pour nous !

Merci d'avoir consulté Terminal UI. Amusez-vous bien à créer des interfaces utilisateurs incroyables en ligne de commande ! 🚀

brightkyefoo