diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade index 73924e81b4..c12c36ee80 100644 --- a/public/docs/js/latest/quickstart.jade +++ b/public/docs/js/latest/quickstart.jade @@ -259,7 +259,21 @@ p. h2#section-load-component-module 8. Run a local server - // PENDING: add directions (or at least hints) here + p Run a local HTTP server, and view index.html. + + p. + If you don't already have an HTTP server, + you can install one using npm install -g http-server. + (If that results in an access error, then you might need to use + sudo npm ...) + For example: + + pre.prettyprint.code. + # From the directory that contains index.html: + npm install -g http-server # Or sudo npm install -g http-server + http-server # Creates a server at localhost:8080 + # In a browser, visit localhost:8080/index.html + // WHAT'S NEXT... ########################## .l-main-section