Coder Social home page Coder Social logo

aleksplus / ajaxterm-ws Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kohsuke/ajaxterm4j

0.0 0.0 0.0 126 KB

DEPRECATED. WebSocket fork of @kohsuke version.

Home Page: http://ajaxterm4j.kohsuke.org/

License: Creative Commons Zero v1.0 Universal

JavaScript 86.18% CSS 13.82%

ajaxterm-ws's Introduction

DEPRECATED

Do not use in new projects.

Fork of @kohsuke/ajaxterm4j version, replaced ajax with WebSocket.

Original author Antony Lesuisse Ajaxterm.

Ajaxterm was written by Antony Lesuisse (email: al AT udev.org), License Public Domain.

Usage

Specify WebSocket endpoint

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Terminal</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" type="text/css" href="index.css">
    <script src="index.js"></script>
</head>
<body style="background-color:#888">
<div id="term" class="ajaxterm"></div>
<script>
    window.onload = function () {
        function getEndpoint() {
            const loc = document.location;
            const host = loc.hostname;
            const port = loc.port;
            const ws_protocol = loc.protocol === 'https:' ? 'wss' : 'ws';
            return `${ws_protocol}://${host}:${port}/`
        }

        ajaxterm.terminal('term', {
            width: window.innerWidth,
            height: window.innerHeight,
            getEndpoint: getEndpoint
        });
    };
</script>
</body>
</html>

ajaxterm-ws's People

Contributors

kohsuke avatar aleksplus avatar welvet avatar joeyjiao avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.