# ink-progress-bar **Repository Path**: mirrors_vadimdemedes/ink-progress-bar ## Basic Information - **Project Name**: ink-progress-bar - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ink-progress-bar [![Build Status](https://travis-ci.org/brigand/ink-progress-bar.svg?branch=master)](https://travis-ci.org/brigand/ink-progress-bar) > Progress bar component for [Ink](https://github.com/vadimdemedes/ink). ## Install ```sh $ npm install --save ink-progress-bar ``` ## Usage See [examples/basic.js](examples/basic.js) for an example app. Run it with `./examples/run basic`. ```jsx const {h} = require('ink'); const ProgressBar = require('ink-progrss-bar'); ``` ## Props All props except the ones below are passed to `` as-is. ### char Type: `string`
Default: `'█'` The character to use for each step. ### progress Type: `number`
Default: `0` The percentage (between 0 and 1) of progress. ### left ### right Type: `number`
Default: `0` The number of characters to subtract from each side of the progress bar. Commonly used if you want text before/after the progress bar on the same line. See [examples/basic.js](examples/basic.js) for an example. ## License MIT © [Frankie Bagnardi](https://github.com/brigand)