Home > Blockchain >  Node.js github pages
Node.js github pages

Time:10-30

I am trying to host my node.js file on GitHub pages, But I dont see an option do do that. Is it possible to host node.js files using GitHub pages? Or is there any other other website I can use to host the files?

CodePudding user response:

GitHub pages only host static resources. You can not have server-side apps hosted on there. You can host it somewhere else and call it from a GitHub pages file!

Reference:https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages

  • Related