mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-06 11:40:46 +00:00
Update README.md
This commit is contained in:
parent
96ef26a21b
commit
74ecfcd70d
1 changed files with 11 additions and 9 deletions
20
README.md
20
README.md
|
|
@ -1,4 +1,4 @@
|
||||||
Flying-squid
|
flying-squid
|
||||||
================
|
================
|
||||||
|
|
||||||
[](http://npmjs.com/package/flying-squid)
|
[](http://npmjs.com/package/flying-squid)
|
||||||
|
|
@ -31,7 +31,7 @@ A semi-functional minecraft server in Node.js
|
||||||
* rom1504.fr (Port 25565) using [auto-squid](https://github.com/rom1504/auto-squid)
|
* rom1504.fr (Port 25565) using [auto-squid](https://github.com/rom1504/auto-squid)
|
||||||
|
|
||||||
## Building / Running
|
## Building / Running
|
||||||
Before running or building it is recommended that you configure the server in config/settings.json
|
Before running or building it is recommended that you configure the server in `config/settings.json`
|
||||||
|
|
||||||
npm install
|
npm install
|
||||||
node app.js
|
node app.js
|
||||||
|
|
@ -49,15 +49,15 @@ Currently used between our test server (rom1504.fr) and our gitter room (through
|
||||||
## Documentation
|
## Documentation
|
||||||
Documentation for how to operate and how to customize your server are coming soon!
|
Documentation for how to operate and how to customize your server are coming soon!
|
||||||
|
|
||||||
## Dev Documentation
|
## Development Documentation
|
||||||
For development see [api.md](doc/api.md), [contribute.md](doc/contribute.md) and [history.md](doc/history.md)
|
For development see [API.md](doc/API.md), [CONTRIBUTE.md](doc/CONTRIBUTE.md) and [HISTORY.md](doc/HISTORY.md)
|
||||||
|
|
||||||
## Using as a lib
|
## Using as a lib
|
||||||
|
|
||||||
Flying-squid is also a server lib. Here is a basic example of usage :
|
flying-squid is also a server lib. Here is a basic example of usage:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var mcServer=require("flying-squid");
|
var mcServer = require("flying-squid");
|
||||||
|
|
||||||
mcServer.createMCServer({
|
mcServer.createMCServer({
|
||||||
"motd": "A Minecraft Server \nRunning flying-squid",
|
"motd": "A Minecraft Server \nRunning flying-squid",
|
||||||
|
|
@ -76,11 +76,13 @@ mcServer.createMCServer({
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
You can add server plugins and player plugins in your package, following [contribute.md](doc/contribute.md).
|
You can add server plugins and player plugins in your package, following [CONTRIBUTE.md](doc/CONTRIBUTE.md).
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
- @roblabla for helping out with the protocols
|
- [@roblabla](https://github.com/roblabla) for helping out with the protocols
|
||||||
- @rom1504 for massive contributions to the code
|
- [@rom1504](https://github.com/rom1504) for massive contributions to the code
|
||||||
|
- [@demipixel](https://github.com/demipixel)
|
||||||
- The PrismarineJS team for creating prismarine-chunk and node-minecraft-protcol
|
- The PrismarineJS team for creating prismarine-chunk and node-minecraft-protcol
|
||||||
- [wiki.vg](http://wiki.vg/Protocol) for documenting minecraft protocols
|
- [wiki.vg](http://wiki.vg/Protocol) for documenting minecraft protocols
|
||||||
|
- All of our other awesome contributors!
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue