Once you're up with a new project with the basic template provided in the Introduction, you should be able to add a LUISRecognizer like so -
var model = '' // Your LUIS Endpoint link comes here
var recognizer = new builder.LuisRecognizer(model);
Now, recognizer is a LUISRecognizer and can pa...