My purpose is to send a JSON object from the client-side to the server. So taking into account the following details of the client:
   <script>
        var onClickFunct = function() {
            trial1.send({
                "test": $("#input_test").val(),
            });
        }
    </script>
Where input_test is the name of my tag in the html page. And where trial1 is implemented with the following code:
var trial1 = {
    //notifica al server una nuova registrazione
    send: function(data){
        $.getJSON('/tst',data);
    }
}
My Server can't see the object; infact if I print req.params it shows me "undefined".
app.get('/tst',function(req){
    console.log(req.params);
});
My index.html reuire the following script <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
While the server require only express
 
     
     
    