Creating the basic node server to serve up random users via API endpoints.
I found that the 'case' has changed to lowercase on faker.Helpers and faker.Image.
The code as presented did not work for me until I changed it to:
var user = faker.helpers.userCard(); user.avatar = faker.image.avatar();
var user = faker.helpers.userCard(); user.avatar = faker.image.avatar();
Yeah, that helps! I think that needs to be mentioned somewhere in lesson
What editor are you using?
In this video I'm using Webstorm, but I use Atom these days: https://github.com/kentcdodds/ama/issues/113