podium-lib / issues

All podium issues, bugs, questions etc goes here. Documentation is to be found at https://podium-lib.io
1 stars 0 forks source link

Getting started not working #33

Closed JuanGimenez closed 3 years ago

JuanGimenez commented 4 years ago

I have just started my first project with podium, i am following the documentation and when i run the command node serve.js it happens image

digitalsadhu commented 4 years ago

Hi @JuanGimenez

I can’t get a good sense of what’s wrong from your screenshot.

Would you be able to provide a bit more details about what’s going wrong for you?

trygve-lie commented 4 years ago

Do you get any errors when you are trying to access the server from a browser? I am also not quite sure what the issue here is.

digitalsadhu commented 4 years ago

@JuanGimenez looking at your screenshot again, I'm wondering if maybe you just need to add a logger to get log output. If you change your layout constructor to add logger:

new Layout({
  ...
  logger: console,
  ...
});

Does this change anything for you?