You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The frontend code is messy in that raw HTML is generated by JavaScript; this isn't really a good practice and is difficult to maintain.
You can largely avoid such a problem by using a framework such as React, which abstracts away the raw (and often gory) details of working with HTML/DOM and instead, lets you think in terms of components and composition, which is a much neater model.
Rewriting the frontend in React may be a large undertaking, but worth pursuing for a v2 release!
The text was updated successfully, but these errors were encountered:
The frontend code is messy in that raw HTML is generated by JavaScript; this isn't really a good practice and is difficult to maintain.
You can largely avoid such a problem by using a framework such as React, which abstracts away the raw (and often gory) details of working with HTML/DOM and instead, lets you think in terms of components and composition, which is a much neater model.
Rewriting the frontend in React may be a large undertaking, but worth pursuing for a v2 release!
The text was updated successfully, but these errors were encountered: