Created
October 10, 2014 17:26
-
-
Save shakyShane/e1be945e9ff8b6280cb2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var browserSync = require("browser-sync"); | |
browserSync.emitter.on("service:running", function (data) { | |
console.log(data); // this object will have tunnel info | |
}); | |
browserSync({ | |
server: "./app", | |
tunnel: true | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! Thanks.