Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Latest commit

 

History

History
28 lines (25 loc) · 530 Bytes

README.md

File metadata and controls

28 lines (25 loc) · 530 Bytes

Server-wrapper

Very simple wrapper for CLI applications with a web interface (mainly intended for server software).

Screenshot

Configuration

Example config.js:

module.exports = {
	cmd: 'java',
	args: [
		'-Xmx1024M', 
		'-Xms1024M',
		'-jar',
		'minecraft_server.1.12.jar',
		'nogui'
	],
	cwd: './minecraft/',
	port: 3000
}

Run it

git clone https://github.com/LiljebergXYZ/server-wrapper.git
npm install
npm start