Search code examples
node.jsexpressexpress-handlebars

Only getting Error 500 when trying to load the page


Everytime I try to connect to my server i am getting Error messages like these:

GET / 500 47.230 ms - 217

GET / 500 7.858 ms - 217

GET / 500 4.641 ms - 217

As I know it is hard to help without looking at the actual code I uploaded the whole code to github in this Repository

If you have any further questions feel free to ask.

Thank you in advance.


Solution

  • 1) Update your package.json!

      "scripts": {
          "start": "node ./bin/www"
      }
    

    2) Then, rename your www.js file to www

    3) Add #!/usr/bin/env node at the beginning of your www file

    4) Run npm start (it should work)

    5) You should also remove .idea folder and add a .gitignore file with ..

    .idea/
    node_modules/
    

    Happy Coding!!!!