Hi folks. Does any one know of any external tools or plugins for data analytics on nodeBB usage.
I am looking to calculate some engagement metrics of the forum members. For ex:
DAU, WAU, MAU Average upvotes spread over a time period etc etc.To new nodeBB users who are about to launch a new community with already several 10k active members. For example, we're currently trying the following ones but the first one doesn't work somehow for us:
So which plugin do you use most and recommend?
IMHO must have plugin:
Also very useful for me:
pretty much needed if you want a usable search
nodebb-plugin-solr
this one is great if you want to have any kind of announcement/blog page
nodebb-plugin-featured-topics-extended
two other plugins that made me choose nodebb over a different forum software
nodebb-plugin-newsletter
nodebb-plugin-minecraft-integration
tldr @yariplus
Yes, @yariplus and other @3rd-Party-Developers are very much beloved here
In the newer stable releases of NodeBB, we've actually updated the search so that posts are returned by relevance, instead of by post time, so Solr is even better now
I'd recommend iframely, myself
Re: canned-responses, feel free to start a new topic and ping me, as it is my plugin, thanks.
@julian said in Which are your favorite nodeBB plugins?:
In the newer stable releases of NodeBB, we've actually updated the search so that posts are returned by relevance, instead of by post time, so Solr is even better now
What version of NodeBB did this start in, and does this require Solr?
In the spirit of staying on topic, here are some of my favorite plugins
@greenmoon said in Which are your favorite nodeBB plugins?:
is it possible to restrict "canned-responses" to moderators and admins only?
Very late, but I use this JS in my custom header to limit canned responses to admins only
// Hide canned responses unless you are an admin
$(window).on('action:composer.loaded', function() {
if (!app.user.isAdmin) {
$('.composer [data-format="canned-responses"]').hide();
}
});