by ladybro on 2/18/20, 5:26 PM with 6 comments
- The app is in the scheduling realm and involves some semi-complicated algorithms
- I did not contribute in any way to the desktop app and it's written in an old language that I don't know at all
- I plan to build the new app in Ruby on Rails, which I am experienced with
- We've identified ~75% of the current functionality that needs to be included in the first version of the web app
- The desktop app has had strong acquisition interest in the past and the best case scenario for all parties would to be acquired in the next 2 years
What steps would you suggest I take to make the process as successful and pain-free as possible?
by PaulHoule on 2/18/20, 6:11 PM
(2) If you can't do that, or even if you can, you should build a test suite that works on both the old and the new code so your reimplementation is correct. This will save you so much suffering.
(3) If you want to make an app that has the same sensibility as a desktop app in 2020 I would look to React, Vue, Svelte or something like that.
by jolmg on 2/19/20, 2:05 AM
I've been working on rebuilding a legacy system for the last "few" years, and now that it's mostly ready, we have a nightmare in figuring out how to transition the users as seamlessly as possible. They can do everything, simpler, but it's different, and will require training. Improvements would have been a lot better to do piecemeal after they've started using the new codebase. After discussing it a few months ago, we came to the agreement that we really should have done a port that resembled the original as closely as possible to ease the transition.
Too late to back out of it now, though.
by matijash on 2/19/20, 9:57 AM
On the other hand, if the code is not written in the modular fashion and things are tightly coupled, it might be harder than writing everything from scratch (of course, that depends a lot on the volume of the code).
As PaulHole suggested, writing a test suite would also be very important to make sure your code works as expected - that will save you a lot of trouble in the long run.
RoR seems like a good and stable choice for the backend, do you plan to use something like React/Vue/Angular on the frontend?
On the side note, I am working on a project that would hopefully make app dev easier and more sustainable in the long run, but unfortunately it is still in the very early stage of development. Would appreciate your feedback though! https://wasp-lang.dev/
by thedevindevops on 2/19/20, 7:41 AM