https://github.com/js13kgames/pixel-quest
Pixel Quest - a js13kGames 2013 competition entry by @sdepold.
https://github.com/js13kgames/pixel-quest
2013 bad-luck competition desktop game html5 javascript js13k js13kgames js13kgames2013 optimization server
Last synced: 9 months ago
JSON representation
Pixel Quest - a js13kGames 2013 competition entry by @sdepold.
- Host: GitHub
- URL: https://github.com/js13kgames/pixel-quest
- Owner: js13kGames
- Fork: true (sdepold/pixel-quest)
- Created: 2022-10-01T08:04:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2013-09-14T07:43:18.000Z (almost 13 years ago)
- Last Synced: 2024-10-01T07:40:58.589Z (over 1 year ago)
- Topics: 2013, bad-luck, competition, desktop, game, html5, javascript, js13k, js13kgames, js13kgames2013, optimization, server
- Homepage: https://js13kgames.com/entries/pixel-quest
- Size: 879 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pixel Quest
A little MMORPG for JS13kGames 2013.

## Getting started
First of all we need to download the code and install the dependencies:
```
git clone https://github.com/sdepold/pixel-quest.git
cd pixel-quest/server
npm install
npm start
```
You can now open `http://localhost:3000` in the browser. Have fun !
## Development tools
### Building a distribution
```
npm run build
```
This will generate a `dist` folder, that contains all the necessary files but in a minified version. Just `cd` into the `dist/server` folder and run `npm install` and `npm start` afterwards.
### Building a distribution zip file.
```
npm run build-zip
```
This will generate a `client.zip` and a `server.zip` file in the projects root folder.
### Checking the size
```
npm run check
```
This will calculate the size of the client and the server code.