분류
Nodejs
Ink - 대화 형 명령 줄 앱에 반응합니다.
본문
https://github.com/vadimdemedes/ink
import React, {Component} from 'react'; import {render, Color} from 'ink'; class Counter extends Component { constructor() { super(); this.state = { i: 0 }; } render() { return ( <Color green> {this.state.i} tests passed </Color> ); } componentDidMount() { this.timer = setInterval(() => { this.setState({ i: this.state.i + 1 }); }, 100); } componentWillUnmount() { clearInterval(this.timer); } } render(<Counter/>);
- 이전글listr - 터미널 작업 목록. 19.03.07
- 다음글log-update - 터미널의 이전 출력을 덮어 써서 기록합니다. 진행 막대, 애니메이션 등을 렌더링 할 때 유용합니다. 19.03.07