Node: Difference between revisions

From Open Rail Data Wiki
Created page with "// Remember to enable the feed you are trying to subscribe in the network rail web application. var prettyjson = require('prettyjson'), StompClient = require('stomp-client..."
 
m Redirected to new Node.js examples page
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
// Remember to enable the feed you are trying to subscribe in the network rail web application.
#REDIRECT [[Node_JS_Examples]]
var prettyjson = require('prettyjson'),
    StompClient = require('stomp-client').StompClient;
 
var destination = '/topic/TRAIN_MVT_ALL_TOC',
    client = new StompClient('datafeeds.networkrail.co.uk', 61618, 'emailaddress', 'your_password', '1.0');
 
client.connect(function(sessionId) {
    console.log('Trying to connect...');
    client.subscribe(destination, function(body, headers) {
        console.log(prettyjson.render(JSON.parse(body)));
    });
});

Latest revision as of 17:56, 9 July 2013

Redirect to: