Jndroid is a JavaScript framework to write WebApp in Android way.
Clone this repository or install with Bower.
bower install Jndroid --save
Include the script on your page.
<!DOCTYPE html>
<html>
<head>
<script src="bower-path-to/jndroid/dist/jndroid.min.js"></script>
</head>
<body>
<script>
var mTextView = new TextView();
mTextView.setText("hello world");
setContentView(mTextView);
</script>
</body>
</html>
Comming soon