From 9a193cfd36b7f7ccd40315d2cc7de1dc3cdcc233 Mon Sep 17 00:00:00 2001 From: Andrea Ruggiero Date: Fri, 10 Oct 2014 21:00:41 +0200 Subject: [PATCH] Update README.md Without app.listen(3000) the code for the server is useless --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b9d8768..6586cd3 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,8 @@ julius.onrecognition = function(sentence) { app = express(); app.use(express.static('path/to/dist')); + + app.listen(3000); ``` 1. In your main script, bootstrap JuliusJS and register an event listener for recognition events ```js