I have a problem with akshell, just in 5 minutes of looking at it I have 1001 concern. I just want to list a few of them:
1. I am not sure the world need such a system which has javascript environment, database and online IDE in one place. Its kind of trying to do a lot of things but doesn't get anything of them really right. There are much better solutions for each out of there, f.e. managed node hosting from nodejitsu or online IDE from cloud9.
2. it seems to be an own C++ environment written around of V8. It is written by a very small group of people, or only one? It can not be such battle tested and good like nodejs is.
3. APIs are not well written, this guys have to learn from nodejs.
4. Coding conventions used in main js lib I can see directly in the shell are ugly ... well everybody can see its done by C coder, but its not the point.
5. Code quality and structure of this ak lib are bad ... thousands of classes in one file.
6. Global functions, extended native prototypes, not fully commonjs spec conform modules implementation. Well fuck, why? Didn't we learn in last 10 years that a spec is important, extending native prototypes is bad for the most cases?
6. Using a relational database is bad enough, but there is no way to use any other database? Come on!, nosql is here!!! Why not to use mongodb, couchdb etc. or at least to provide a choice.
7. Test coverage of the default lib must be a joke. Such important stuff should be completely test driven developed.
8. Once again, the API is really bad !!! I just don't know where to start from … I can't do this here.
I hope I didn't hurt somebodys feelings too much.