I needed to have an easy way of communicating with the Stanford language parser. I had difficulty using the stanford-simple-nlp node package in Meteor directly, and got frustrated with debugging it, so I created another local HTTP server with Node that serves a single endpoint for parsing sentences. And it works! var http = require('http'); var StanfordSimpleNLP = require('stanford-simple-nlp'); var httpdispatcher = require('httpdispatcher'); // listen on port 3xxx const PORT = 3050; var stan...