You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
426 B
JavaScript
14 lines
426 B
JavaScript
// import { Terminal } from "xterm";
|
|
|
|
import { Terminal } from "/run/media/selcuk/Linux/repo/Anka_Anvil/Rev1/node/node_modules/xterm/lib/xterm.js";
|
|
|
|
const terminal = document.getElementById("terminal");
|
|
console.log("hi");
|
|
|
|
const term = Terminal({ cols: 120, rows: 40 });
|
|
// const term = new Terminal();
|
|
// term.open(terminalDiv);
|
|
// term.write("first succesfull hello world");
|
|
|
|
terminal.innerHTML = "Terminal should be here";
|