I tried to import the koa-router into my nodejs app like this:
but when checking the code completion, there is no get method to be found. Or any other method.
I installed it using npm install koa-router but apparently something is not working.
Can someone help me?

koa-routeris now@koa/router. In the documentation you should find this:So your code should look like this:
This way I guess, your code completion should work. Can you confirm this?