I have simple app that use express (node) as server and android as client,I want to communicate between android and express over http
i have this code in express
var express = require( 'express' );
var http = require( 'http' );
var app = express();
var server = http.createServer( app );
app.get('/', function(req, res){
    console.log( "hello word" );    
});
i type in browser(PC) mydomain.com:8080 to access express and it works fine. I have 2 Question
- how i can send value use following url and receive in express ? 
- if my question number 1 success,how it work if I access from android? 
thanks
 
    