Termo는 웹사이트에 터미널과 유사한 인터페이스를 만드는 데 사용할 수 있는 간단한 터미널 에뮬레이터입니다. 이는 Stripe.dev의 터미널 에뮬레이터에서 영감을 받았습니다. xterm.js 위에 래퍼입니다.
데모 및 문서.
깃허브
HTML 파일에 다음 스크립트 태그를 포함하세요.
<script src="https://cdn.jsdelivr.net/gh/rajnandan1/termo/dist/termo.min.js"></script>
객체를 전달하여 Termo의 새 인스턴스를 만듭니다.
const myTermo = new termo({ title: 'Termo', welcomeMessage: 'Welcome to Termo', commands: [ { command: 'hello', description: 'Says hello', action: async (terminal, args) => terminal.write('\r\nHello! ' + args.join(' ')), }, ], }); myTermo.create(); myTermo.show();
위 내용은 브라우저용 CLI 구축의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!