Create a DDP server using Node.js

Due to limitations on node.js versions, the latest versions of Meteor cannot be used on the system. The DDP server should be created using the usual node.js, with which the Meteor installation will connect.

A DDP client can be created in node.js using node-ddp-client , but how can we create a DDP server?

+4
source share
2 answers

It may be too late to answer this, and this may not be a very good answer. This is not an easy task, we need to manage sessions, users, methods, publications ... As a link for a brave developer :)

+4

All Articles