After following the steps in the Quick Start I get dropped into this command prompt: local@klik$ from which I can not run npm start. Pic attached. Exiting allows me to run npm start but the program outputs a 404 error page(even if i correct "chat" to "message") Any idea what is going on here? Thanks.

I just ran
npm install feathers-cli
mkdir testapp
cd testapp
feathers generate
feathers generate service # call service message
npm start
And going to localhost:3030/messages showed what I would expect.
@daffl any idea why i get "local@klik"? I get this working by running "exit" at local@klik prompt. @marshallswain suggested in Slack that the program wasnt exiting out of the generator as expected. Why would this be the case?
Update: I ran this again in a different directory and I dont get the "local@klik" prompt at the end. Its exits the generator and give me the usual command prompt. I dont know what the difference is. Just an FYI. Going to close this.
Just an FYI to you guys. I ran 4 generate service commands one after the other. This is what happened. Notice the bold after each series of questions. Sometimes the service exits, sometimes you have to type 'exit' command to get out. It works but I thought i would share since this doesnt seem to be expected.
klik:blog-example klik$ feathers generate service
local@klik~$
? What do you want to call your service? graphql
? What type of service do you need? generic
? Does your service require users to be authenticated? No
create src/services/graphql/index.js
create src/services/graphql/hooks/index.js
create test/services/graphql/index.test.js
local@klik~$ exit here I had to type exit to move on.
klik:blog-example klik$ feathers generate service
local@klik~$
? What do you want to call your service? post
? What type of service do you need? database
? For which database? MongoDB
? Does your service require users to be authenticated? Yes
create src/services/post/index.js
create src/services/post/hooks/index.js
create test/services/post/index.test.js
create src/services/post/post-model.js
klik:blog-example klik$ feathers generate service here generator exited on its own
local@klik~$
? What do you want to call your service? comment
? What type of service do you need? database
? For which database? MongoDB
? Does your service require users to be authenticated? Yes
create src/services/comment/index.js
create src/services/comment/hooks/index.js
create test/services/comment/index.test.js
create src/services/comment/comment-model.js
klik:blog-example klik$ feathers generate service here generator exited on its own
local@klik~$
? What do you want to call your service? viewer
? What type of service do you need? generic
? Does your service require users to be authenticated? Yes
create src/services/viewer/index.js
create src/services/viewer/hooks/index.js
create test/services/viewer/index.test.js
local@klik~$ exit here I had to type exit to move on.
Pic of same below

Thanks @aarmand. This is resolved with the new release that is coming but we'll leave this open for visibility until that lands.
This is now fixed. npm install -g [email protected]. 馃挜
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue with a link to this issue for related bugs.