Rikulo built using JQuery not itself? - dart

I'm wondering,
In definition Rikulo
Rikulo is a free and open source Dart framework for creating incredible cross-platform web and native mobile applications using HTML5.
But why the web is built by JQuery not itself?
Is that Rikulo is to young yet so it builts with JQuery?
BTW, the "compiler" Dart Editor use a lot of RAM ~500M it cost a lot!!!

Rikulo is written in Dart, not JS, so jQuery is not applicable here. IMO, Dart's API covers well what jQuery provides, though Dart is young and not as stable as jQuery yet.

Related

Quality and complete PWA (Progressive Web Apps) with dart or/and AngularDart

Can I build a complete and quality PWA (Progressive Web Apps) using just dart language - or AngularDart - with no javascript prior experience?
Yes, you can build a PWA using AngularDart.
AngularDart is usually used for native apps and can be compiled into javascript. With tree shaking, type inference and minification, Dart can help you optimize your web app. Therefore it is suitable as a framework for Progressive Web App.
Here is another SO related post regarding PWA using AngularDart.
We need to get some documentation out for this, but we do have an example application:
Example: https://hnpwa.dartlang.org/
Source: https://github.com/dart-lang/angular/tree/master/examples/hacker_news_pwa

Does jquery mobile use any template library?

I am choosing a template library for my jQuery Mobile project. I wonder if jqm uses any template library internally, since it uses requireJS for AMD I figured it might use an off-the-shelf library for templates.
I did not find any in the source code, but want to confirm with SO.
If it doesn't, do you have a recommendation for a template library that works well with jqm (I know it is an open-ended question).
No, there is no template engine behind jQuery mobile.
No. jQuery Mobile does not include any template library. You are free to choose the ones you like. There are many good templating libraries like mustache.js, dust.js, handlebar.js etc.

is it possible to use dart with jsp?

I am using spring framework for my java enterprise application .
I felt javascript / jquery is hard to maintain for larger enterprise application.
Classes and Objects makes code maintenance easier.
how can i use dart with spring framework / JSP?.
The HTML code can be generate with JSP. However, we cannot debug with Dart Editor anymore.
It would be nice and more encourage people to start to use Dart by just by support debugging a HTML with dart from non-standard dart editor debug server.
For example: The HTML part is served by a Jetty server which contains links to dart
and we should be able to debug in Dart Editor.
Personally, This is the most needed feature otherwise, it's difficult to ask people to migrate old sytem with JSP, PHP to start to use Dart
We are listening to Dartian reponse.
I found one issue in Dart issue list: https://code.google.com/p/dart/issues/detail?id=3748
The best way to use dart with springframework and JSP is to create rich client app (RCP) in dart and use springframework and JSP for implementing a service layer that should be used by the RCP.
There are various disadvantages if you chose to mix the application state between the client (browser) and the server. Much more scalable model is to build on service oriented architecture (SOA) and keep the UI logic solely on the client side.
Hope it helps ;-)

Jquery Mobile on J2ME

I'm developing J2ME. Is it possible using Jquery Mobile for web app in J2ME?
Reviewed according to jquery mobile web support, unwritten for J2ME.
Thanks Advance :)
Absolutely not, there is no way to run JavaScript in a J2ME app.
I found this scriptme project, but have never used it.
http://code.google.com/p/scriptme/
According to the site: "ScriptME is an open-source implementation of EcmaScript based on FESI Project written entirely in Java for the J2ME Platform. It is typically embedded into Java applications to provide scripting to end users."
There is also the minijoe, which I also did not use...
http://code.google.com/p/minijoe/
"MiniJoe is a "Minimal Javascript Object Environment" that is based on MIDP. MiniJoe consists of a Javascript compiler and interpreter. Both components are written in Java suitable for CLDC 1.1 devices."

BlackBerry J2ME vs HTML Javascript framework like PhoneGap

A client wants a blackberry application for listening live radio for his radio station. We focused on iPhone development. I know Java language have done several projects. However haven't tried yet J2ME. Which do you recommend J2ME or HTML Javascript framework like PhoneGap or any other cross platform framework? What are the advantages and disadvantages of them? Thanks.
If you are comfortable with Java Swing or other Java UI programming then going with native is probably a great idea.
If you are more comfortable with HTML, JavaScript and CSS then use PhoneGap. If you are planning on deploying your application to more than one platform then definitely use PhoneGap. PhoneGap also allows you to write native BlackBerry Java code and integrate that with the HTML / JS code in case the specific APIs you need are not exposed.
With the imminent release of BlackBerry OS 6 things should get a lot better on that platform for both PhoneGap (since the browser is now WebKit based) and for native Java programming.
There are many other comparisons between PhoneGap and X on stackoverflow, though most other cross platform frameworks don't support BlackBerry.
J2ME: Blackberry supports this (and is fact still the BB's core), however it's a rapidly aging platform. You can't do many interesting things in BB without the proprietary APIs.
Phonegap: Haven't used it myself but I've heard so-so things about it. High footprint, lowest-common-denominator etc.

Resources