platform-terminal
platform-terminal copied to clipboard
Angular Dashboard rendered into system’s terminal! 🔥
Hi there, I am following the instructions but getting below issue. Please help.  
`> [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...