Created
October 1, 2015 10:23
-
-
Save jpatel531/687931f2b65c13c9ffe9 to your computer and use it in GitHub Desktop.
Pusher Node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var path = require('path'); | |
var favicon = require('serve-favicon'); | |
var logger = require('morgan'); | |
var cookieParser = require('cookie-parser'); | |
var bodyParser = require('body-parser'); | |
var Pusher = require('pusher'); | |
var pusher = new Pusher({ | |
appId: process.env.PUSHER_CHAT_APP_ID, | |
key: process.env.PUSHER_CHAT_APP_KEY, | |
secret: process.env.PUSHER_CHAT_APP_SECRET | |
}); | |
var app = express(); | |
// uncomment after placing your favicon in /public | |
//app.use(favicon(__dirname + '/public/favicon.ico')); | |
app.use(logger('dev')); | |
app.use(bodyParser.json()); | |
app.use(bodyParser.urlencoded({ extended: false })); | |
app.use(cookieParser()); | |
app.use(express.static(path.join(__dirname, 'public'))); | |
app.post('/messages', function(req, res){ | |
var message = { | |
text: req.body.text, | |
name: req.body.name | |
} | |
pusher.trigger('chatroom', 'new_message', message); | |
res.json({success: 200}); | |
}); | |
// catch 404 and forward to error handler | |
app.use(function(req, res, next) { | |
var err = new Error('Not Found'); | |
err.status = 404; | |
next(err); | |
}); | |
module.exports = app; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment