2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

dependencies update (jade renamed to pug)

This commit is contained in:
Vlad 2016-06-08 22:13:53 +03:00
parent 23b6242d2a
commit 4bb2ab97a9
4 changed files with 10 additions and 11 deletions

View File

@ -1,5 +1,5 @@
var express = require('express');
var app=express();
var app = express();
var http = require('http').Server(app);
var io = require('socket.io')(http);
var socketioJwt = require('socketio-jwt');
@ -13,7 +13,7 @@ var env = {
};
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.set('view engine', 'pug');
io
.on('connection', socketioJwt.authorize({
@ -27,9 +27,9 @@ io
io.emit('chat message', msg);
});
});
app.use(express.static(__dirname + '/public'));
app.get('/', function (req, res) {
res.render('index', { env: env });
});
@ -37,4 +37,3 @@ app.get('/', function (req, res) {
http.listen(3001, function(){
console.log('listening on *:3001');
});

View File

@ -6,10 +6,10 @@
"author": "Auth0",
"license": "MIT",
"dependencies": {
"dotenv": "^1.2.0",
"express": "^4.13.3",
"jade": "^1.11.0",
"socket.io": "^1.3.7",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"pug": "^2.0.0-beta2",
"socket.io": "^1.4.6",
"socketio-jwt": "^4.3.3"
}
}

View File

@ -1,9 +1,9 @@
extends layout
block content
script(src="https://cdn.auth0.com/js/lock-9.0.min.js")
script(src="https://cdn.auth0.com/js/lock-9.2.min.js")
script(src="/socket.io/socket.io.js")
script(src="http://code.jquery.com/jquery-1.11.3.js")
script(src="http://code.jquery.com/jquery-1.12.4.js")
div#login