Some checks failed
Build and Deploy / build-linux (push) Failing after 1m22s
Build and Deploy / build-windows (CLANG64) (push) Failing after 10m30s
Build and Deploy / package-dist (push) Has been skipped
Build and Deploy / deploy-itch (push) Has been skipped
Build and Deploy / deploy-gitea (push) Has been skipped
13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
// Test to connect to a portal
|
|
|
|
$_.contact((actor, reason) => {
|
|
if (actor)
|
|
console.log(`Got an actor: ${actor}`)
|
|
else
|
|
console.log(`Did not get an actor: ${reason}`)
|
|
}, {
|
|
address: "localhost",
|
|
port: 5678,
|
|
password: "abc123"
|
|
});
|