Once Node.js and the dependencies are installed, run the following command from the root directory:
- node slidenotes
+ node lib/slidenotes
By default, the slides will be served at [localhost:1947](http://localhost:1947).
</script>
<!-- the next two lines enable the speaker notes server -->
- <!-- <script src="socket.io/socket.io.js"></script>
- <script src="js/reveal.slidenotes.js"></script> -->
+ <script src="socket.io/socket.io.js"></script>
+ <script src="js/reveal.slidenotes.js"></script>
</body>
</html>
\ No newline at end of file
var socket = io.connect(window.location.origin);
var socketId = Math.random().toString().slice(2);
- console.log('View slide notes at ' + window.location.origin + '/_notes/' + socketId);
+ console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
Reveal.addEventListener( 'slidechanged', function( event ) {
var nextindexh;
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
});
-app.get("/_notes/:socketId", function(req, res) {
+app.get("/notes/:socketId", function(req, res) {
fs.readFile(opts.baseDir + 'lib/slidenotes/notes.html', function(err, data) {
res.send(Mustache.to_html(data.toString(), {
app.listen(opts.port || null);
console.log("Your slides are at http://localhost" + (opts.port ? (':' + opts.port) : ''));
-console.log("Your notes are at http://localhost" + (opts.port ? (':' + opts.port) : '') + '/_notes');
+// console.log("Your notes are at http://localhost" + (opts.port ? (':' + opts.port) : '') + '/notes');
console.log("Advance through your slides and your speaker notes will advance automatically");