Kethan
Kethan
Yes even i need to understand how can i split into multiple microservices.
When i am posting a data to http://localhost:3000/service1 it is not reflecting but when i directly add to http://localhost:3001/service1 it is showing the data. Why? ```javascript //server.js const feathers =...
@marshallswain I am getting this when i try to post to http://localhost:3000/service1 ```html Error Cannot POST /service1 ```
@daffl I am afraid of this setup .. it this optimised way to do microservices or is there any better way you can suggest? How will socket connections scale? I...
@marshallswain i mean will socket.io service scale?
@marshallswain wow that sounds awesome!. How do I use feathers-sync in above example?.. And what about the status of the issue i posted?
Hi, any updates on the issue I posted?
@luwes thanks it was simple!. Yes without documentation I am breaking my head how to use it. any more detail doc will be helpful. Thanks.
And how do i define event handler outside of swiss. may be in HTML tag like ``````
Oh thanks. One final doubt. How do I send function from attribute or setAttribute? ```js let obj = { count: 3, click: () => { console.log("clicked!"); } } ```