Skip to content

Instantly share code, notes, and snippets.

View edwardhotchkiss's full-sized avatar

Edward Hotchkiss edwardhotchkiss

View GitHub Profile
@edwardhotchkiss
edwardhotchkiss / coffee-or-error.coffee
Created May 29, 2012 18:33
coffee-script or error
@id = params.id or (->
throw new Error 'id must be defined!'
)()
# deps
fs = require('fs')
express = require('express')
stitch = require('stitch')
# express server
app = express.createServer()
# configure express, /public for index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script src="/js/app.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var app = require('App').init();
app.speak('!');
###
@object App
Main Application File
###
# Bind jQuery
$ = jQuery
# App just initializes this class
###
@class MyProject
@description Main Application
###
# Dependencies
BaseProject = require './BaseProject'
# MyProject Class, returned in embed
class MyProject extends BaseProject
###
@class ErrorHandler
@description Error Delegation
###
class ErrorHandler
constructor: (@name) ->
console.log? @name or 'ErrorHandler'
window.onerror = (msg, url, line) ->
###
@class BaseProject
@description Base Project Class
###
# Dependencies
ErrorHandler = require './ErrorHandler'
# BaseProject Class
class BaseProject
https://gist.github.com/2989407
restart = ->
child = exec('coffee server.coffee', (_error, _stdout, _stderr) ->
if _error
throw new Error(_error)
else
console.log '> server.coffee restarted successfully!'
)
# end
# end
/**
* @application
* @file /app/helpers/models.js
**/
Spine.Model.extend({
toJSON: function(){
var attributes = this.attributes();
attributes['id'] = attributes['_id'];
return attributes;