devkennyy / rungeon

🏃‍♂️Open source, puzzle based adventure game in your browser
https://rungeon.live/
GNU General Public License v3.0
18 stars 21 forks source link

Added Backend #87

Closed gruelingpine185 closed 2 years ago

gruelingpine185 commented 2 years ago

Description

Created a small backend with Express.js. This backend doesn't do anything but serve the static HTML files at the moment, but is the foundation that will allow tons of new features to be easier to implement. That includes #3 and a few others.

This uses NodeJS, so in order to run it, you'll have to run the following

npm install
npm start

Then, you'll have to open the website at http://localhost:3000/

Changes

This PR restructured the codebase for a more-or-less conventional approach to backend coding. In doing so, there were links to local files that had to be redirected to their proper paths. Those issues were also fixed.

Solves

Closes #85 Closes #36 See #38

devkennyy commented 2 years ago

I'll review this once you mark it ready, great work!