1.2.5 • Published 5 years ago

react-hackterm v1.2.5

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

React hackterm

Hackable terminal emulator in React

Demo link

Screenshot 2019-10-27 at 7 05 38 PM Screenshot 2019-10-27 at 7 08 26 PM

Milestone

  • Hackable Terminal UI
  • Terminal prefixing
  • Custom commands
  • Command flags
  • Theming
  • Command history

Installation

//use npm
$ npm i react-hackterm

//use yarn
$ yarn add react-term

Themes

Available theme: default, github, grass, ocean and pure.

Usage

import React from "react";
import ReactDOM from "react-dom";
import Terminal from "react-hackterm";

function App() {
  return (
    <div className="App">
      <Terminal
        config={{
          mode: "root",
          modeText: "example.com",
          width: 500,
          height: 300,
          edge: true,
          font: "monospace",
          text: 14
        }}
        theme="pure"
        bar="macos"
        command={[
          {
            name: "whoami",
            description: "Get package name",
            value: "react-hackterm"
          },
          {
            name: "pwd",
            description: "Print working directory",
            value: "/User/remote/guest/"
          }
        ]}
      />
    </div>
  );
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

Inbuilt command

CommandsValue
helpShow available commands
infoAbout terminal
dateGet current date
repoReach hackable terminal repository
clearShow clear history

Properties

PropertyValueType
config{mode: "root",modeText: "example.com",width: 500,height: 300,edge: true,font: "monospace",text: 14}object
commands{name: "repo",description: "Get repo", value: "https://github.com/"}array
themedefault, github, grass, ocean or pure.string
barwindows, macos or ubuntustring
1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago