meteor-custom-protocol icon indicating copy to clipboard operation
meteor-custom-protocol copied to clipboard

Send custom data on the Meteor's defaults websocket connection.

Results 11 meteor-custom-protocol issues
Sort by recently updated
recently updated
newest added

Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...

dependencies

I see somebody else wrote about the odd character(s) prior to the json. I was having that problem before as well, and when Chrome issued a recent update, it broke...

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.7.1 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 2.8.8 (2020-02-29) Bug Fixes #61 & #65...

dependencies

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 3.0.6 to 3.0.8. Changelog Sourced from handlebars's changelog. v3.0.8 - February 23rd, 2020 Bugfixes: backport some (but not all) of the security fixes from 4.x - 156061e...

dependencies

I receive this from server ``` a["\u0002\u0000{\"__type\":\"signal\",\"m... ``` (this is visible in chrome's console) because of that unicode characters `\u0002\u0000`, the json is invalid. But how do they get there?...

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Hi, I can't get the client to receive a message from the server. Here's my code: ``` Meteor.startup(() => { if (Meteor.isServer) { let protocol = JsonProtocol.getInstance(); protocol.on('myMessage', (data, sessionId)...