New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

quest-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quest-server

NodeJS MMORPG Server

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Quest Server [MMORPG]

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.

Getting Started

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

Installation

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

Unit Testing

Planned for the future.

Documentation

For more information, please see the documentation in the /docs folder.

Dependencies

About InteractiveResearchLabs

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.

License (MIT and Creative Commans)

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.

Keywords

quest

FAQs

Package last updated on 18 Mar 2015

Did you know?

Socket

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.

Install

Related posts