Ajax equivalent in mteor for datatables

I am trying to load data in batches using data tables. In PHP we can use AJAX for doing it. do we have something similar in meteor js or anything that can be helpful in my case?

$(document).ready(` `function` `() {`

`    ` `$(` `'#example'` `).DataTable( {`

`        ` `"processing"` `: ` `true` `,`

`        ` `"serverSide"` `: ` `true` `,`

`        ` `"ajax"` `: ` `"../server_side/scripts/server_processing.php"`

`    ` `} );`

`} );`