function init()

in core/nodejsActionBase/test.js [73:83]


function init(msg) {
    request({
        url : 'http://localhost:8080/' + 'init',
        method : 'post',
        parameters : {
            value : msg
        }
    }, function(response) {
        console.log(response);
    }, logger);
}