GithubHelp home page GithubHelp logo

peppoasap / echo-client Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 13 KB

A simple client side library to test WebSocket with Echo Messages.

JavaScript 100.00%
websocket-client echo websocket testing js

echo-client's Introduction

Echo Client

Echo Client is a client-side JS library to test WebSocket with Echo Messages.

Installation

Manual Download

Download the echo.js file and add it to your project folder. Download here

<script src="echo.js"></script>

Using NPM

Use the package manager npm to install Echo Client.

npm install echo-client

You need to use Express Server to serve the file. Add this line to your Express Server.

app.use("/echo", express.static(__dirname + "/node_modules/echo-client"));

Next add it to your HTML.

<script src="/echo/echo.js"></script>

Usage

//Create a Echo providing the WebSocket Echo Server URL
//This one is good - "wss://echo.websocket.org"
let echo = new Echo("wss://echo.websocket.org");

//Set the Callback to execute when receiving a message from the server. 
echo.whenReply((msg) => {
    console.log(msg.data);
});

//generate(callback, n)
//This method send n messages with the callback that generate an object as content to Echo Server
//You will receive the same messages.
// IMPORTANT: The Callback must return an Object!
echo.generate(() => {return {hello: "Hello World!"}}, 2);

//generateEverySecond(callback, second, n)
//This method send n messages with the callback that generate an object as content to Echo Server
//and repeat this every setted second/s.
echo.generateEverySecond(() => {return {test: "I am looping every 1 second"}}, 1, 5);

//Stop the generateEverySecond method if loop is running.
echo.stop();

Version 1.0.0 - Under Construction

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

ISC

echo-client's People

Contributors

peppoasap avatar

Stargazers

Roman avatar

Watchers

 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.