Skip to content

NodeBB Plugins

Discussion regarding NodeBB Plugin development.

1.8k Topics 15.0k Posts
Most Voted Plugins

Subcategories


  • Have a question about building a plugin? Ask here
    425 Topics
    2k Posts
    barisB

    https://community.nodebb.org/post/88242 I think this answers your question. Let me know if it doesn't work.

  • Need a plugin developed? Ask here!
    222 Topics
    1k Posts
    barisB

    Plugin doesn't show usernames if they set their status to offline AFAIK

  • nodebb-plugin-starwars

    4
    5 Votes
    4 Posts
    2k Views
    P

    ahaha this is awesome.

  • 4 Votes
    1 Posts
    1k Views
    julianJ

    ... because who doesn't love that old "uh-oh!" sound from ICQ?

    https://www.npmjs.org/package/nodebb-plugin-soundpack-vintage-im

    Vintage IM Soundpack for NodeBB

    Vintage Instance Messenger Sound Pack

    MSN ICQ Requirements NodeBB v0.4.2 or higher Installation npm install nodebb-plugin-soundpack-vintage-im Want more sounds?

    Let me know in the issues, or submit a pull request with the new sounds added to the ./sounds folder!

  • 11 Votes
    28 Posts
    12k Views
    P

    ah I see, okay re-opened

  • Facebook and Twitter SSO

    8
    0 Votes
    8 Posts
    3k Views
    julianJ

    Thanks @a_5mith/@planner, good to know you guys've got my back when I'm not online 😄

  • Hey all

    7
    0 Votes
    7 Posts
    3k Views
    D

    @Fayez-Abu-Helow Check chat message

  • is there any other ways to upload pictures?

    9
    0 Votes
    9 Posts
    6k Views
    sunqiS

    刚刚开始学习。。自己开发是做不来,我是想架一个高校论坛,但感觉现在论坛没有足够吸引人的能力:(。。。观望踌躇中

  • 0 Votes
    12 Posts
    5k Views
    G

    So I'm not sure why, but the URL is set to https://twitter.com/search?q=%40AggroTactics rather than https://twitter.com/search?q=AggroTactics. The first URL does a search with @AggroTactics rather than #AggroTactics. So I changed it on my local but it instead added the literal '@'... not sure where that is coming from. Not sure if that was intended... seems weird.

  • Plugin Help

    1
    0 Votes
    1 Posts
    1k Views
    T

    Hi NodeBB team,

    I'm learning JS by writing what seemed to me a simple plugin. Knowing nothing of this matter I'm struggling a little with this all dispached structure.

    I've succeed to make basic routes so far. I'm working now on the template of the admin page.

    I have added these

    <!-- IF emailerInstalled --> <!-- ELSE --> <!-- ENDIF emailerInstalled -->

    but doesn't seem to be recognized, always getting the false condition.

    Could someone point me the right direction?

    I wonder also if adding a "post" route is the right way to get the form back? I've seen this from imgur plugin.

    nodebb-plugin-admin-email

  • Problem with nodebb-plugin-static-page

    7
    0 Votes
    7 Posts
    2k Views
    L

    Perfect @psychobunny !!

    cheers

  • Problem with widget plugin

    12
    0 Votes
    12 Posts
    4k Views
    T

    @psychobunny It's a plugin for a Minecraft server website I am developing. (switching over from Enjin)

  • 0 Votes
    2 Posts
    1k Views
    F

    @sunqi

    There's a Vimeo plugin, a Youtube plugin, and a Daily Motion plugin.

  • 3 Votes
    3 Posts
    2k Views
    P

    ahaha awesome. yeah that thing can be addictive

  • 2 Votes
    6 Posts
    4k Views
    meetdilipM

    Good addition.

  • Plugin ideas wip meta topic

    15
    2 Votes
    15 Posts
    6k Views
    F

    @julian

    How about a plugin to prune unverified registrations after X number, or should this be Core?

  • [nodebb-script-irc] Embed IRC on your forum

    6
    1 Votes
    6 Posts
    3k Views
    P

    @Scuzz said:

    @psychobunny *Now we can watch Twitch Plays Pokemon on our forum!

    can we? 😄

  • Dynamic content

    3
    0 Votes
    3 Posts
    2k Views
    S

    @psychobunny nodebb-plugin-mousetrap is not in the NPM registery and I also noticed that nodebb-plugin-designer has mousetrap as keyword and description.

  • Communicating with the Database

    3
    0 Votes
    3 Posts
    3k Views
    barisB

    If you are going to store more than just simple key values, you should use hashes and sets.

    For example if you have an object in javascript that you want to save from your plugin you can do

    var myObj = { myField: 1, otherField: 'test' }; db.setObject('nodebb-plugin-test:test', myObj, function(err) { ));

    To retrieve that object later on

    db.getObject('nodebb-plugin-test:test', function(err, myObj) { console.log(myObj); });

    To retrieve just a single field use db.getObjectField('nodebb-plugin-test:test', 'otherField', callback); To set a single field db.setObjectField('nodebb-plugin-test:test', 'otherField', 5, callback);

    You can check out the rss plugin to see how this is done.

  • Plugin/Hooks not registered.

    4
    0 Votes
    4 Posts
    2k Views
    julianJ

    No problem @Siber! Thanks for using NodeBB 🙂

  • PLUGIN+THEME WEEKEND V4

    18
    0 Votes
    18 Posts
    5k Views
    julianJ

    Ahahahah, yeah looks like you're the clear winner. When does voting end? ⌚

  • [nodebb-plugin-livereload] LiveReload

    2
    4 Votes
    2 Posts
    2k Views
    julianJ

    Awesome! I didn't know we'd need a plugin to do this, I thought a Browser Extension was it... shows what I know 🙂