Skip to content

Instantly share code, notes, and snippets.

View lauriys's full-sized avatar
😖
asdfgffhjgkmn

Laura Lynn lauriys

😖
asdfgffhjgkmn
View GitHub Profile
@unusualbob
unusualbob / gist:4288643
Created December 14, 2012 21:00
Mongoose Connection Deal
var mongoose = require('mongoose')
, Schema = mongoose.Schema;
//Define our schema(s)
var ConfigSchema = new Schema({
name: { type: String, required: true }
, USERID: { type: String, required: true }
, ROOMID: { type: String, required: true }
});