If it really is just 100-150 old topics, then an nginx map makes even more sense.
I can see it from your point of view, that it's easy for NodeBB to do, although I urge you to consider that nginx is very good at what it does, and so having nginx check for an old url to redirect is quite simple.
For example, if the old forum had topics using this url: /t/<topic id>, then you could write a location block that only responded to that folder, and applied the map to redirect the user based on those topic IDs.
In one example, we have this map config:
map $request_uri $mapped_topic {
~^/showthread\.php\?(?<topicId>\d+).*$ $topicId;
~^/archive\/index\.php\/t-(?<topicId>\d+)\.html$ $topicId;
default 0;
}
and in the map file itself, we maintain the hash to go from one topic to another.