LocalHost:3000 not loading my Meteor app -


hey i'm working through tutorial writing app meteor on windows laptop. localhost:3000 not loading app. curious if has idea solutions? thanks

this worked me:

open command prompt/terminal , change working directory app directory(simple-todos in case). so,

cd simple-todos 

setup port meteor app:

meteor --port 3000 

or different port using:

meteor --port 3030 

if have settings file (settings.json) meteor app, can start app using command below:

meteor --settings settings.json 

if created port, response this:

[[[[[ ~/public_html/simple-todos ]]]]]

=> started proxy.
=> started mongodb.
=> started app.

=> app running at: http://localhost:3000/


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -