New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

quick-terminal

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quick-terminal

```shell quick-terminal --port 3000 ```

latest
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

quick-terminal

Use

Run the server from the shell

quick-terminal --port 3000

Set up the client


<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <style>
            .terminal
            {
                border: 2px solid #23314f;
                display: block;
                height: 600px;
                width: 600px;
            }
        </style>
        <link href="./dist/style.css" rel="stylesheet">
    </head>
    <body>
        <div id="terminal" class="terminal">
        
        </div>
        <script type="module">
            import {initTerminal} from "./dist/index.js";
            initTerminal({port: 3000, terminalID: "terminal", wsUrl: "localhost"})
        </script>
    </body>
</html>

Options

Run a server from code

const {startWebSocketServer} = require("quick-terminal");
startWebSocketServer();

FAQs

Package last updated on 01 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts