We would like to use a DataSet instance on our NodeJs backend, to achieve something like this:
Data (edges, nodes, ...) arrives in our NodeJs backend.
We would like to store that data in a DataSet instance on the NodeJs backend.
Then that data is send to the frontend.
In the frontend the same data is also stored in a DataSet instance and visualized.
Reason is that we need a full copy of the DataSet on the backend side. And if we could use your DataSet implementation, we are sure that it behaves exactly the same on backend and frontend...
But when we use it like this in NodeJs:
const visNetwork = require("vis-network");
Then we only see this functionality:
So we were wondering whether it is possible to make the DataSet available for developers?
Hi everybody,
We would like to use a DataSet instance on our NodeJs backend, to achieve something like this:
Reason is that we need a full copy of the DataSet on the backend side. And if we could use your DataSet implementation, we are sure that it behaves exactly the same on backend and frontend...
But when we use it like this in NodeJs:
Then we only see this functionality:
So we were wondering whether it is possible to make the DataSet available for developers?
Thanks a lot!! Bart