我按照这个链接(https://docs.feathersjs.com/real-time/primus.html)通过feathersjs-primus创建了一个websocket服务器。下面是app.configure
我正在使用的代码:
app.configure(primus({
transformer: 'websocket'
}, function(primus) {
// Do something with primus
primus.use('todos::create', function(socket, done){
// Exposing a request property to services and hooks
socket.request.feathers.referrer = socket.request.referrer;
done();
});
}));
运行此代码时出现以下错误:
node_modules/primus/index.js:697
throw new PrimusError('The plugin is missing a client or server function', this);
^
我所做的一切都是按照上面链接中的说明进行的。为什么我会收到此错误消息?我还错过了什么?