platform-terminal icon indicating copy to clipboard operation
platform-terminal copied to clipboard

Angular Dashboard rendered into system’s terminal! 🔥

Results 7 platform-terminal issues
Sort by recently updated
recently updated
newest added

Hi there, I am following the instructions but getting below issue. Please help. ![Screenshot from 2020-11-01 23-26-58](https://user-images.githubusercontent.com/6343303/97810431-c5db7500-1c99-11eb-972a-1a44e63cd74f.png) ![image](https://user-images.githubusercontent.com/6343303/97810418-b0fee180-1c99-11eb-8522-fc20a318e4e2.png)

`> [email protected] link:platform /Users/scottwalter/Library/Mobile Documents/com~apple~CloudDocs/Sandbox/platform-terminal > npm link dist/platform-terminal && npm link platform-terminal npm ERR! code EINVALIDTYPE npm ERR! typeerror Error: Argument #2: Expected array but got string npm ERR!...

I can run angular application on terminal. Can we run this in browser? I have made below changes but did not get blessed component. I was not getting any error...

I have clone this repository and added input control but not able to set the focus: I have added textbox to elementFactories using .set('textbox', blessed.textbox) and created a component to...

I changed `app.component.ts` to: ```typescript import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ selector: 'pl-root', template: ``, changeDetection: ChangeDetectionStrategy.OnPush, }) export class AppComponent { } ``` But when I `yarn...