You can list active plugins with
./nodebb pluginsAnd it does have a help screen
./nodebb --helpQuick questions:
var meta = module.parent.require('./meta');
. Then, meta.config
may have the configuration (might need to double-check that). var nconf = module.parent.require('nconf');
will allow you to hook into the configuration utility we use: nconf.get('url')
returns the full url.posts.parse
hook is called whenever a piece of content needs to be "parsed like a post". It is not strictly a hook that is called whenever a topic is loaded. Perhaps you can look into filter:post.getPosts
?