question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is there an easy way to detect @-mentions without using a higher level kit like howdy? I hacked something together by capturing the bot’s ID on the rtm.start event (as in the Readme) and shoving it into a regex… but that feels really brittle. I don’t see “mention” anywhere in any of the event enumerations.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

6reactions
ekmartincommented, May 1, 2016

rtm.activeUserId should contain the ID you’re looking for: https://github.com/slackhq/node-slack-client/blob/b4f18a482e7a34d3d03c89f221e61a669c94b643/lib/clients/rtm/client.js#L267

rtm.on(RTM_EVENTS.MESSAGE, message => {
  if (message.text.includes(`<@${rtm.activeUserId}>`)) {
    // handle message
  }
});

Use text.indexOf/text.match if you’re in an environment without .includes.

0reactions
andrewpbrettcommented, May 1, 2016

👍 thanks @ekmartin, that works great!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Mentions - definition of mentions by The Free Dictionary
mention ; 1. to refer to or speak about briefly or incidentally ; 2. to acknowledge or honour ; 3. not to mention...
Read more >
71 Synonyms & Antonyms for MENTIONS - Thesaurus.com
Find 71 ways to say MENTIONS, along with antonyms, related words, and example sentences at Thesaurus.com, the world's most trusted free thesaurus.
Read more >
MENTION | definition in the Cambridge English Dictionary
to speak about something quickly, giving little detail or using few words: I'll mention your ideas to Jacinta. [ + (that) ] He...
Read more >
Mention
Brand insights at your fingertips. Mention enables brands and agencies to monitor the web, listen to their audience and manage social media.
Read more >
81 Synonyms & Antonyms of MENTIONS - Merriam-Webster
a formal recognition of an achievement or praiseworthy deed received a special mention for her submission to the exhibition of local artists.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found