You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also just tried it with nuxt, which can run nodejs on server level, but a few errors occured. This surprised me beacuse it was working fine with nodejs only.
Can't resolve 'net' in nodes7 => Resolved after adding net [yarn add net]
process.hrtime is not a function => Resolved after replacing with new Date()
net.connect is not a function => Looking closer at the added net package I think it's the wrong package.
Do you know what can be done to make this package compatible with nuxt? https://nuxtjs.org/
Any help would be greatly appreciated
The text was updated successfully, but these errors were encountered:
I added a IsServer check before executing the call. Appearently the code was also running on the client. With nuxt this is not always verry clear because there is only middleware.
This is the response from the server I am getting now. I added some additional logging to make it more clear what is going on
And also the response in the client
It seems that during InitiateConnection undefined is returned while the callback is not called yet. Any idea how this can be fixed?
Great work with this driver!
Also just tried it with nuxt, which can run nodejs on server level, but a few errors occured. This surprised me beacuse it was working fine with nodejs only.
Do you know what can be done to make this package compatible with nuxt?
https://nuxtjs.org/
Any help would be greatly appreciated
The text was updated successfully, but these errors were encountered: