Skip to content

NodeBB Plugins

Discussion regarding NodeBB Plugin development.

1.8k Topics 15.2k Posts
Most Voted Plugins

Subcategories


  • Have a question about building a plugin? Ask here
    444 Topics
    2k Posts
    Sky FoxxS
    Perfect! Does the job super elegantly thank you
  • Need a plugin developed? Ask here!
    225 Topics
    1k Posts
    julianJ
    Considering its localized popularity, I think it would be an idea candidate for a plugin. The easiest way would be to utilise an existing askbox service and embed it into a user profile or something.
  • plugin for pictures in chat

    1
    0 Votes
    1 Posts
    311 Views
    אשרא
    have? thank
  • [nodebb-plugin-camo] Make embedded images look secure!

    40
    10 Votes
    40 Posts
    48k Views
    yariplusY
    New Release 1.5.1 Back from the dead with a bunch of bug fixes, code rewrite to current node and NodeBB, and new pictures for the guide topic! Fixed crash if camo was not installed locally. Fixed crash if an incorrect url was specified. Fixed crash if installed on windows. Fixed settings not changeable after original setup. Removed old or useless hooks. Removed babel. Corrected dead links and emails. Changed compatibility to >= NodeBB 1.0.0 New docs!
  • Tenor GIF and Redactor Composer issue

    1
    1 Votes
    1 Posts
    281 Views
    M
    When using Redactor as composer, clicking 'New Topic' or 'Reply' button will create multiple GIF button. See screenshot below: [image: yx5Ou6o.png] The GIF button multiplies every time I close the composer and reopen it. It doesn't happen if I'm using the default Composer. Anybody face the same issue?
  • Plugin Help - checkin2 and Points

    1
    0 Votes
    1 Posts
    296 Views
    K
    Has anyone (successfully) integrated "checkin2" or "Points" into their forums? I'm trying to find a way to track daily activity in my forum per member as well as gamify the experience
  • Plugins are not working. showing Not found error

    10
    0 Votes
    10 Posts
    1k Views
    julianJ
    You'll need to add it to package.json on your local machine, and then git commit it into Heroku... or something -- I don't really recall how Heroku works, but it's something like that.
  • Captcha plugin for guest posts

    1
    0 Votes
    1 Posts
    334 Views
    T
    Anyone know of a captcha plugin for guest users to be able to post in an open forum category?
  • Advanced Editor Plugin

    4
    0 Votes
    4 Posts
    977 Views
    T
    @julian said in Advanced Editor Plugin: You'll probably want to use the Quill Composer, which is our official (in development) WYSIWYG composer. You should be able to download it from the plugins list. Don't you use markdown here?
  • Integration with Gatsby (or Ghost or Next) plugin.

    2
    1 Votes
    2 Posts
    526 Views
    gotwfG
    @Mark-Bevels So you want your static Gatsby site to be dynamic. Heh, you are not the only one to have given this some thought... But... where's the "win" here? Security: Well, the moment you go dynamic you open the door much wider to crackers. Maybe some small win that your static content is "safe" and only comments system exposed. Narrow minded to only analyze a single vector though so lets take speed and performance. Well, a static article might load faster since now main potential bottleneck is backend db and script glue. On to stability: Maybe a bit more stable to only make comments dynamic? Maintenance: I question whether this pans out on the cost/benefit front because the moment you go dynamic you add a LOT to your stack. Admin that stuff takes time so you may as well leverage it for other stuff. So ye' needs to be rollin' up yer' sleeves and experiment to find where your sweet spot lies. I think I would be inclined to go with dynamic blog such as ghost (definitely not WP). Ditto on the wiki front. NodeBB is awesome sauce for sure but seems overkill for a blog comment system. Disqus sucks privacy & copyright wise but there are other 3rd party offerings w/less egregious terms, e.g. Muut and a couple others I don't recall off top of my head. Personally, I just do w/o comments. No interest/need in becoming an Internet Personality. I just toss some stuff "out there" for whatever it may be worth to whomever. Yeah, maybe missing some back and forth, contribs, etc. but when it comes to bloggin' I would rather spend my time writing than maintaining and sweating the next zero day exploit. Yeah, I am a freak. Be all that as it may.... Perhaps these are the droids yer' looking for: Reflections on the Digital Sabbath https://community.nodebb.org/topic/14639/reflections-on-the-digital-sabbath Have fun!
  • Plugins Like Donut for Slack

    1
    0 Votes
    1 Posts
    300 Views
    J
    Hi, New to nodeBB, was curious if there were any existing plugins that had functionality similar to the Donut App for Slack? In short it essentially is an app that randomly pairs people either within a specified channel (would be groups for NodeBB) or across multiple channels. I think this would be a cool way to go about building connections within a distributed online community. Tried to search through the plugins on npm list but didn't see much in that regard.
  • Read-API access via Javascript / jQuery

    Solved
    1
    0 Votes
    1 Posts
    1k Views
    dogsD
    Hey Guys! I'm trying to experiment with the NodeBB API. And I want to receive the data via jQuery. var rest_url = "https://my.nodebb.net/api/topic/10/my-title-here"; var json_object = []; function get_posts_from(rest_url, callback){ fetch(rest_url) .then(res => res.json()) .then((out) => { //DEBUG START console.log(out); //Debug END json_object = out; callback(); }).catch(err => console.error(err)); } I receive this error: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. Is this just a config problem of the nginx server or do I have to adjust some settings in NodeBB to? Another question is: Do I need the csrf_token from https://my.nodebb.net/api/config for the read-api too or is it just for the write API? I also added * to Access-Control-Allow-Origin in ACP -> Settings -> Advanced. It didn't work. Greets Solution I added Access-Control-Allow-Origin to the site configuration via ngnix. Open your configuration of the page e.g. my.nodebb.net.conf in /etc/nginx/sites-available. There should already be a location / block. Paste this into the existing block: if ($request_method = 'OPTIONS') { add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; add_header 'Access-Control-Max-Age' 1728000; add_header 'Content-Type' 'text/plain charset=UTF-8'; add_header 'Content-Length' 0; return 204; } if ($request_method = 'POST') { add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; } if ($request_method = 'GET') { add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; } THIS ALLOWS THE ORIGIN FROM * (everywhere) ITS NOT RECOMMENDED FOR PRODUCTION INSTANCES. I just use this to test my code locally on my machine.
  • General OpenID login plugin development

    5
    2 Votes
    5 Posts
    3k Views
    robotdanR
    As far as I know there is not an official plugin yet to support OpenID Connect in NodeBB. If anyone is still looking for a work-able OpenID Connection option, we've built one for production usage but it should work with any OpenID Connect identity provider. Supports discovery using the .well-known/openid-configuration URL Supports configurable email claim, defaults to email Supports Logout URL Optionally map roles by a named claim provided in the Userinfo endpoint response Documented option to bypass the default login panel Feel free to open an issue if you find it is missing anything. https://github.com/FusionAuth/nodebb-plugin-fusionauth-oidc
  • 1 Votes
    3 Posts
    1k Views
    robotdanR
    We've built an OpenID Connect plugin that supports discovery, configurable email claim name, role mapping and logout URL. There is some decent configuration details on the README. https://github.com/FusionAuth/nodebb-plugin-fusionauth-oidc It should work with any OpenID Connect IdP - @Alexkin-Sky-Walker feel free to open an issue if something doesn't work for you.
  • The sanitize plugin

    11
    0 Votes
    11 Posts
    1k Views
    Patrick MP
    @julian said in The sanitize plugin: What did you do to run a rebuild? You are right!!! As soon as our Web Dev person did a rebuild from the the command line, it all worked beautifully. It was a communication issue on our end. He thought I was doing the rebuild while I thought he was doing the rebuild. You've all been so patient with me! Thank you so much for all the help.
  • Display posts in group where category_name = group_name

    Unsolved
    1
    0 Votes
    1 Posts
    224 Views
    dogsD
    Hello together! I newly installed nodebb and I am very excited to figure out, how it works. I am planning my community to rebuild on nodebb. Is there a plugin or option that let me just see posts in a group where the tag or the category name is equal to the name of the group? There is a plugin which bridges(?) the groups with the categories. So maybe there is a plugin / function out there which fits my interest. https://www.npmjs.com/package/nodebb-plugin-groups-autoassigncategory Greets
  • What is the name of this plugin?

    3
    0 Votes
    3 Posts
    505 Views
    oplik0O
    Or to be more precise: these are all separate SSO plugins. Just search for sso in plugins
  • subscribe into newsletter widget

    2
    0 Votes
    2 Posts
    427 Views
    julianJ
    There's the mailchimp plugin, but I am not sure how out-of-date that one is.
  • Image lightbox?

    10
    0 Votes
    10 Posts
    1k Views
    A
    @667 said in Image lightbox?: https://github.com/june07/nodebb-plugin-lightgallery https://www.npmjs.com/package/nodebb-plugin-lightgallery Also available in the NodeBB plugin menu under find. Awsome
  • Katex plugin problem

    3
    0 Votes
    3 Posts
    528 Views
    A
    @oplik0 Thanks a lot , it worked !!
  • [nodebb-plugin-dice-and-numbers] Roll dice and generate random numbers

    5
    3 Votes
    5 Posts
    1k Views
    M
    @am1cable said in [nodebb-plugin-dice-and-numbers] Roll dice and generate random numbers: @Michael-Pfaff I haven't been working on it recently, but I have plans to go through and finish it sometime this year. Will have a look at this while I'm at it! Hey man, I just went ahead and purchased a plugin made by the NodeBB team. We made it open source if you wanna use that. It's here for anyone interested: https://github.com/NodeBB/nodebb-plugin-dice
  • [nodebb-plugin-sso-nextcloud] Nextcloud OAuth2

    6
    3 Votes
    6 Posts
    956 Views
    N
    @pwFoo there was a bug in a code. Please, update plugin to the last version (0.3.6), change again the lines 60, 61 and 65 of library.js, reload, restart and test again. Sorry for the inconvenience