Nikolas Poniros

Results 35 comments of Nikolas Poniros

Yes I also suggested something similar in https://github.com/dfahlander/dexie.js-web/pull/3 regarding the splitting of the docs into API, Tutorial etc. To do this in jekyll we will probably have to define categories...

Hey and thanks for the issue. From what I remember and from looking at the code I'm pretty sure that the current implementation is the way I wanted it at...

No it is currently not possible to have one instance of the sync-server synchronising different DBs. All tables found in the path of the sync-server instance will be synched. If...

The `baseRevision` and `syncedRevision` are internally used by dexie-syncable to know what changes to send. I’m guessing you would have to adjust it also and not only the sync-client. Sync-client...

It would be interesting to figure out which insert/update triggered the constraint error. Was it your data or a syncNode. I don’t remember when the revisions are increased and who...

I never found the time to implement websockets support for the sync-client. Only the sync-server supports websockets. The /check call is needed only for the poll protocol because you do...

This https://github.com/dfahlander/Dexie.js/tree/master/samples/remote-sync/websocket might be a good start. I’m afraid that I don’t have anything better to offer currently

Hi there, thanks for the pull request. Have you tested this in a worker? More specifically have you tried creating a CUID? As far as I understand this will not...

For some reason I didn't want to use dexie to create the IDs so I added `cuid` and `getID()`. I don't even remember why I didn't want to create IDs...

Good to hear. https://github.com/nponiros/bookmarks_manager uses the sync-client but it is not really a small example. Files under the actions folder use the sync-client. The sync-client itself is initialized the the...