
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
quest-server
Advanced tools
Quest is a multiplayer role play game engine. This repository contains the server. It is easily extensible through plugins.
You may know him from the live coding stream on livecoding.tv.
The Quest Server is completely based on plugins. However, it must always be present a Connection and a World plugin with certain features. For more information, please see the documentation in the /docs folder.
// Example from /examples/server.js
var server = new QuestServer()
.use(new Connection({port: 9000})) // Add Plugins
.use(new World({tmx: '../shared/map/Demo.tmx'}))
.use(new Accounts({password: '1234'}))
.start(); // Start Server
Use the NPM installer:
npm install quest-server
Note: The client API is written at the time only for debugging and not used productively.
The test client may examine the protobuf files in the wrong folder. It runs through browserify. So you can generate a new bundle.js.
cd /examples/client
browserify app.js -o bundle.js
Planned for the future.
For more information, please see the documentation in the /docs folder.
We are a association of indie developers, graphic designers and video creators. We work together on several projects and help each other with it's own projects.
MIT for the server code, and CC-BY for the art and music.
The license terms for the server code you see in the Github repository.
FAQs
NodeJS MMORPG Server
We found that quest-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.