Code Monkey home page Code Monkey logo

Comments (6)

Gregivy avatar Gregivy commented on June 14, 2024

Try to use try {await server.connect()} catch(error) {/*error logic here*/}

from simpleddp.

hems avatar hems commented on June 14, 2024

Still hangs forever on node.js 12.

It never throws.. You can reproduce this way:

import ws from 'isomorphic-ws'
import simpleDDP from 'simpleddp'

const opts = {
  endpoint: 'wss://google.com',
  SocketConstructor: ws,
  reconnectInterval: 500,
};

DDP = new simpleDDP(opts, [simpleDDPLogin]);

;(async () =>{
  try {
    console.log("will hang")
    await DDP.connect()
    console.log("this never gets logged!")
  } catch(error) {
    console.log("this never happens too", error)
  }

  console.log("executed 2")
})()

On the Chrome browser, I get a console.error that comes from socket.js to the console but it doesn't throw / get caught as well:

image

Does it catch for you?

from simpleddp.

hems avatar hems commented on June 14, 2024

If i set a "maxTimeout" then i get a Error as you can see on the [your source code here](maxTimeout: 1000) but that error has no message, but i can see the socket.js stays retrying anyway, maybe "socket.close" should also be called when the max timeout is reached?

Does the same happen to you?

image

from simpleddp.

Gregivy avatar Gregivy commented on June 14, 2024

The error happens earlier because by default simpleDDP will try to connect to the endpoint and you are not putting new simpleDDP(opts, [simpleDDPLogin]) in a try block, but you can prevent the default with autoConnect: false:

const opts = {
  endpoint: 'wss://google.com',
  SocketConstructor: ws,
  reconnectInterval: 500,
  autoConnect: false
};

Have a look here about all the constructor parameters https://gregivy.github.io/simpleddp/simpleDDP.html, there is also autoReconnect.

from simpleddp.

Gregivy avatar Gregivy commented on June 14, 2024

Concerning the maxTimeout it is only for method calls.

from simpleddp.

Gregivy avatar Gregivy commented on June 14, 2024

Also don't forget that you have these events:

server.on('connected', () => {
    // do something
});

server.on('disconnected', () => {
    // for example show alert to user
});

server.on('error', (e) => {
    // global errors from server
});

from simpleddp.

Related Issues (20)

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.