Migration to Actix for the Party Manager #1
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
good first issue
help wanted
invalid
javascript
migration
question
WIP
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
Snoupix/Sharify#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Websockets in Remix
The problem
The only way I could add a Websocket endpoint to my app, was to add an Express route to handle it. But since my whole app, thus my Party manager, is in Remix, I couldn't use WS with express to communicate with my Party manager and my clients.
The solution
Aside of this project, I was creating my own REST API in Rust with Actix. So I will add a GraphQL (Juniper) endpoint for my Party manager to it.
And, since they have a Websocket feature, I think I'm gonna migrate all the back-end of my Remix app to Actix and keep the Express server for SSR and probably Cookie management.
Progress