Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: server method
Submitted on May 6, 2015 at 02:47 AM

Section 1 (JavaScript)

Meteor.methods({
        gimmetitle: function () {

            var url = 'http://wiki.warthunder.com/index.php?title=B-17G_Flying_Fortress';

            request(url, function(err, response, body) {
                $ = cheerio.load(body);
                var text = $('.flight-parameters td').text();
                console.log(text);
                
                return text;
            });          
        }
    });