I need guidance on configuring a backend for an Ember.js application that manages CRUD operations on a small data set with real-time updates. Any advice on replacing the PHP/MySQL setup?
hey, have you tried node.js with express and socket.io for the realtime bits? i recently played with it and it was kinda fun. what do ya think, any pitfalls you think i should know about?
hey, i was curious about using nest.js with ember - seems like realtime updtes could be handled cleanly. has anyone given that a try? curious about any quirks in integration or scaling issues
hey, have you triyed firebase? it nativly supports realtime updates and crud, making setup way simpler than php/mysql. might be a good alternative.
Experience has shown that using Django with Django REST framework and channels offers a reliable alternative. The REST framework provides a clean API for handling CRUD operations while channels enable real-time communication, making it easy to implement immediate updates. Switching away from PHP/MySQL to this Python-based solution has allowed me to benefit from improved code organization and scalability. Furthermore, the ample documentation and active community support helped ease the transition and maintain the application’s robustness over time.
hey, i dabbled with go and gorila ws for realtime crud. the speed is ace but the docs are kinda sparse. might be worth a shot if youre looking to experiment away from php. good luck!