Home

Awesome

collect-mentions npm version License Libera Manifesto

Code style bunning Make A Pull Request Time Since Last Commit

<!-- When logo is needed <p align="center"> <a href="https://github.com/username/repo"> <img src="./logo.png"> </a> </p> <br> -->

Collect mentions from a given text string, using battle-tested mentions-regex package

<div id="thetop"></div>

If you have any how-to kind of questions, please read the Contributing Guide and Code of Conduct documents.
For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.

Conventional Commits PayPal Author Support Share Love Tweet NPM Downloads Weekly NPM Downloads Monthly NPM Downloads Total

<!-- Project is [semantically](https://semver.org) & automatically released on [CircleCI][codecoverage-url] with [new-release][] and its [New Release](https://github.com/apps/new-release) GitHub App. -->

Table of Contents

Install

This project requires Node.js >=20. Install it using yarn or npm.
We highly recommend to use Yarn when you think to contribute to this project.

$ yarn add collect-mentions

API

collectMentions

Collect all mentions from string. Returns array of objects with properties { handle, mention, index }.

Params

Example

import collectMentions from 'collect-mentions';

const mentions = collectMentions('foo @tunnckoCore and yeah @bar, right?');

console.log(mentions);
// => [
//   { handle: '@tunnckoCore', mention: 'tunnckoCore', index: 3 },
//   { handle: '@bar', mention: 'bar', index: 25 },
// ]

// If `dot` boolean is `true`
console.log(collectMentions('some @ok.bar yeah', true));
// => [{ handle: '@ok.bar', mention: 'ok.bar', index: 4 }]

back to top

Related Projects

Some of these projects are used here or were inspiration for this one, others are just related. So, thanks for your existance!

back to top

Contributing

Please read the Contributing Guide and Code of Conduct documents for advices.
For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.

Contributors

Thanks to the hard work of these wonderful people this project is alive and it also follows the all-contributors specification.
Pull requests, stars and all kind of contributions are always welcome. :stars:

Users

You can see who uses collect-mentions in the USERS.md file. Please feel free adding this file if it not exists.
If you or your organization are using this project, consider adding yourself to the list of users.
Thank You! :heart:

License

Copyright (c) 2017-present, Charlike Mike Reagent.
Released under the Apache-2.0 License.


This file was generated by verb-generate-readme, v0.7.0, on July 25, 2018.

<!-- Front line badges -->