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
'use strict' | |
var mongoose = require('mongoose'), | |
Schema = mongoose.Schema | |
function forceFormat(subdomain) { | |
return subdomain.toLowerCase().remove(/[^a-z0-9]/g) | |
} | |
var AccountSchema = new Schema({ |
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
'name must be unique': function(test) { | |
account.save(function(err) { | |
if (/duplicate/.test(err) || /unique/.test(err)) { | |
console.log(err.message) | |
test.done() | |
} | |
blueprints.generate('Account', function(err, anotherAccount) { | |
if (err) throw err | |
anotherAccount.name = account.name | |
anotherAccount.save(function(err) { |
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
'use strict' | |
GLOBAL.DEBUG = true; | |
var mongoose = require('mongoose') | |
mongoose.connect('mongodb://localhost/groupdock_development') | |
mongoose.connection.on('open', function() { | |
var test = require("assert"); | |
var Slave = function() { | |
this.running = false; |
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 Step = require('step'), | |
fs = require('fs'), | |
path = require('path'), | |
Http = require('http'), | |
mime = require('mime') | |
/** | |
Converts a list of parameters to forum data | |
- `fields` - a property map of key value pairs | |
- `files` - a list of property maps of content |
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 dnode = require('dnode') | |
var upnode = require('upnode') | |
var server = dnode({}) | |
server.use(upnode.ping) | |
server.listen(5000) | |
var client = upnode.connect(5000) | |
client(function(remote, connection) { | |
console.log('connected', arguments) |
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 upnode = require('upnode') | |
var dnode = require('dnode') | |
var assert = require('assert') | |
var PORT = 5000 | |
var client = upnode(function(remote, connection) { | |
connection.on('remote', function(remote) { | |
remote.testServer(function(err, value) { | |
assert.ok(!err) |
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
<html> | |
<head> | |
<script src="/dnode.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
window.onload = function () { | |
DNode.connect(function (remote) { | |
remote.cat(function (says) { | |
document.getElementById('says').innerHTML = says; | |
}); | |
}); |
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 isPortTaken = function(port, fn) { | |
var net = require('net') | |
var tester = net.createServer() | |
.once('error', function (err) { | |
if (err.code != 'EADDRINUSE') return fn(err) | |
fn(null, true) | |
}) | |
.once('listening', function() { | |
tester.once('close', function() { fn(null, false) }) | |
.close() |
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
// figures out how to write the file based on source, destination | |
// eg | |
// source = a/f.jpg | |
// dest = /tmp | |
// result = /tmp/f.jpg | |
// | |
// source = a/f.jpg | |
// dest = tmp/g.jpg | |
// result = tmp/g.jpg | |
function getWritePathFromSource(source, destination, callback) { |
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
// this will find all files ending with _test.js and run them with Mocha. Put this in your package.json | |
"scripts": { | |
"test": "find ./tests -name '*_test.js' | xargs mocha -R spec" | |
}, | |