You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-14Lines changed: 11 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,27 +5,24 @@
5
5
[](https://gitpod.io/#https://github.com/michaljaz/web-minecraft)
6
6
## About
7
7
8
-
**Web-minecraft is minecraft client written in Javascript.** From web browser this client connects to proxy that translates Websocket connection to TCP and then to real minecraft server (https://github.com/michaljaz/web-minecraft-proxy), so you can play minecraft in the browser. <br>
8
+
**Web-minecraft is minecraft client written in Javascript.** From web browser this client connects to proxy(https://github.com/michaljaz/web-minecraft-proxy) that translates Websocket connection to TCP and then to real minecraft server, so you can play minecraft in the browser. Web-minecraft now only supports minecraft 1.16.5.
9
+
10
+
## Demo
9
11
Live demo with no installation: https://michaljaz.github.io/web-minecraft.
10
12
11
-
## Setup
13
+
## Development setup
12
14
13
15
```bash
14
-
#Install node modules
15
-
npm i
16
-
17
-
#Building app bundle
18
-
npm run build
19
16
20
-
#Start node server and serve bundle files
17
+
npm install
21
18
npm start
22
-
23
19
```
20
+
This will start express and webpack in development mode: whenever you save a file, the build will be redone (it takes 2s), and you can refresh the page to get the new result.
24
21
25
-
</details>
22
+
Connect to http://localhost:8080 in your browser. Also specify correct server(1.16.5) ip in url param.
0 commit comments