Re: Where Does OpenEuphoria Fit Today
- Posted by ghaberek (admin) Aug 30, 2018
- 7157 views
I think one area where Euphoria could really shine is in the web space. This is an area that is more popular now than ever. Euphoria could compete with the likes of Ruby, Node.js, and .NET Core for the web application space.
I'm about 60% complete on an MVC framework for Euphoria, which I plan to use it to rewrite this website.
This includes:
- template parser
- JSON library
- database connectors (MySQL/Postgres/SQLite)
- data abstraction models
- dynamic application routing
- easy request/reply CGI handlers
Possible uses for this:
- websites, small-to-large
- a RESTful API service
- web front-end to a back-end service
Currently it just runs in "CGI mode" where each web request fires off the interpreter in the web server, but I'm also working on a "service mode" where requests are routed from the web server to a live backend that is always on.
I can post post the mostly-working-but-incomplete code soon if others would be interested in contributing*, otherwise it will go live once I have a "minimum viable product" running.
*The biggest problem we have right now is a lot of end-user programmers as opposed to contributors to Euphoria itself. I really could use some help with this to see it thrive.
-Greg