react-console-emulator icon indicating copy to clipboard operation
react-console-emulator copied to clipboard

👨‍💻 A simple, powerful and highly customisable Unix terminal emulator for React.

Results 46 react-console-emulator issues
Sort by recently updated
recently updated
newest added

Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 4.9.2 to 4.10.0. Release notes Sourced from webpack-cli's releases. v4.10.0 4.10.0 (2022-06-13) Bug Fixes changeTime is already in milliseconds (#3198) (d390d32) improve parsing of --env flag (#3286)...

dependencies

Bumps [babel-minify](https://github.com/babel/minify) from 0.2.0 to 0.5.2. Release notes Sourced from babel-minify's releases. [email protected] Had some missing dependency issues: babel/minify#957, babel/minify#964 [email protected] (2018-09-24) :rocket: New Feature babel-minify #861 feat(cli): add sourceType...

dependencies

I'm trying to find a solution where I can automatically put text in the code console without the user typing the command. And the welcome message doesn't help. I need...

Terminal looks great! I'm just wondering if it's possible to get a catch all mechanism for commands that don't exist. I'd like to actually handle the fact that a command...

feature request

I've looked through the docs and so far as I can tell there isn't something like: `terminal.pushToStdoutWithResponse('Would you like to play a game? [Y/N]: ')`. Is this something that's available...

feature request

Thanks for the great library! In most terminals, if you type a line longer than the width of the window, it wraps the text ![image](https://user-images.githubusercontent.com/2960040/120884393-3efdca80-c5e3-11eb-9f90-c9ea9a1f2a0a.png) In react-console-emulator, it would scroll...

enhancement

This PR adds a callback prop that is called, when the tab key is pressed. This allows developers to add their own autocomplete feature

Hi - thanks for making this software, it's great! I have a question - I would like the initial welcome message and subsequent messages to be printed to the screen...

```javascript pushToStdout = (message, options) => { const { stdout } = this.state if (this.props.locked) stdout.pop() stdout.push({ message, isEcho: options?.isEcho || false }) /* istanbul ignore next: Covered by interactivity...

It would be great to have a command autocompletion and possibly a callback to provide further completions. Similar to how it's done here https://github.com/rohanchandra/javascript-terminal/blob/af6ab7c18e595341c3e2d5a79e07f68cb51ef2c2/src/emulator/auto-complete.js I would try to implement this...

feature request