Skip to content

Instantly share code, notes, and snippets.

@wearethefoos
Created May 2, 2016 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wearethefoos/4fba2b1ea67312cc147c7dd852c2392a to your computer and use it in GitHub Desktop.
Save wearethefoos/4fba2b1ea67312cc147c7dd852c2392a to your computer and use it in GitHub Desktop.
const feathers = require('feathers');
const rest = require('feathers-rest');
const socketio = require('feathers-socketio');
// const errors = require('feathers-errors');
const bodyParser = require('body-parser');
var MongoClient = require('mongodb').MongoClient;
const service = require('feathers-mongodb');
// Create a feathers instance.
const app = feathers()
// Enable Socket.io
.configure(socketio())
// Enable REST services
.configure(rest())
// Turn on JSON parser for REST services
.use(bodyParser.json())
// Turn on URL-encoded parser for REST services
.use(bodyParser.urlencoded({extended: true}));
const mongo_url = process.env.MONGOLAB_URI || 'mongodb://localhost:27017/rockpaperscissors';
// Connect to your MongoDB instance(s)
MongoClient.connect(mongo_url).then(function(db){
// Connect to the db, create and register a Feathers service.
app.use('/games', service({
Model: db.collection('games'),
paginate: {
default: 30,
max: 50
}
}));
// A basic error handler, just like Express
// app.use(errors.handler());
// Start the server
var port = process.env.PORT || 3030;
var server = app.listen(port);
server.on('listening', function() {
console.log('Feathers Message MongoDB service running on ' + port);
});
}).catch(function(error){
console.error(error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment