gluon-remote-node

Node Version of gluon remote
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-remote-node.git
Log | Files | Refs | README | LICENSE

commit b098bf0b77cb1268f6afd5d9385e9b2fc3ef7424
parent 2ed5d0f2aa8b2d8a08a33941c8ab1a078c21a912
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 14 Jun 2016 21:12:01 +0200

Add package.json and start script

Diffstat:
Apackage.json | 28++++++++++++++++++++++++++++
Aserver.js | 0
2 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/package.json b/package.json @@ -0,0 +1,28 @@ +{ + "name": "gluon-web-remote", + "version": "1.0.0", + "description": "A Web Config mode for running mode of Gluon Router", + "main": "server.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node server.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/MTRNord/gluon_web_remote_node.git" + }, + "keywords": [ + "Gluon", + "Freifunk", + "Web", + "nodejs", + "Wlan", + "Config" + ], + "author": "MTRNord", + "license": "MIT", + "bugs": { + "url": "https://github.com/MTRNord/gluon_web_remote_node/issues" + }, + "homepage": "https://github.com/MTRNord/gluon_web_remote_node#readme" +} diff --git a/server.js b/server.js