As a pet project, I am trying to get familiar with NodeJS and CoffeeScript, and am finding it hard to get the ball rolling.

I've found plenty of examples of single-file super-simple apps like in CoffeeScript's examples folder, however, none of those really show what a full application would look like. I've also scrounged Google to no avail.

Do you have any examples of medium-sized, multi-file CoffeeScript/NodeJS apps I could learn from?

link|improve this question

feedback

5 Answers

up vote 15 down vote accepted

See this gist: https://gist.github.com/652819

Its pretty much an entire NodeJS app using the Express framework, Redis for session storage, Couchdb as the database and written in CoffeeScript. However, you are asking for code organization. That depends from developer to developer. I personally prefer Express. However if you prefer MVC style then see Geddy.

link|improve this answer
feedback

GitHub is your friend:

And if you want even more, take a look at the listing for the Coffee-Script Language. I suppose that 95% of the projects there are related to Node.js at the moment.

link|improve this answer
feedback

The Zappa framework is a coffeescript layer on top of Express, Socket.IO and more. It's quite comprehensive and the examples might contain what you're looking for? https://github.com/mauricemach/zappa/

link|improve this answer
feedback

By default, it would be the same as a medium-sized, multi-file JavaScript/NodeJS app.

Except you would have source files named *.coffee, and you would invoke the CoffeeScript compiler to build your JavaScript NodeJS app.

link|improve this answer
What I mean is that the smaller examples are meant to show off CoffeeScript as a language, not a tool. I am looking for a higher-level view to understand directory/module/code structure, as opposed to standalone snippets. – Austin Hyde Jan 3 '11 at 6:23
feedback

here is a search for github, for everything writtin in coffeescript and description containing the word "node" - returning 300+ entries

https://github.com/search?langOverride=&language=CoffeeScript&q=node&repo=&start_value=1&type=Repositories&x=0&y=0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.