├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CNAME ├── Cakefile ├── LICENSE ├── README.md ├── _layouts └── default.html ├── benchmarks ├── express.coffee ├── out │ └── .gitignore ├── run ├── views │ ├── index.coffee │ ├── index.jade │ ├── layout.coffee │ └── layout.jade └── zappa.coffee ├── docs ├── 0.2-peaches │ ├── announcement.md │ ├── migration.md │ └── reference.md ├── 0.3-gumbo │ ├── announcement.md │ ├── migration.md │ └── reference.md ├── client.html ├── crashcourse.md ├── css │ └── highlight.css ├── docco.css ├── favicon.png ├── images │ └── zappa.png └── zappa.html ├── examples ├── chat.coffee ├── express-equivalent.coffee ├── express.coffee ├── hi.coffee ├── masochism.js ├── postrender.coffee ├── public │ └── foo.txt ├── views.coffee ├── views │ ├── index.coffee │ ├── index.jade │ ├── layout.coffee │ └── layout.jade └── zappa.coffee ├── index.md ├── lib └── .gitignore ├── package.json ├── src ├── client.coffee └── zappa.coffee └── tests ├── assets.coffee ├── helpers.coffee ├── index.coffee ├── middleware.coffee ├── public └── foo.txt ├── routes.coffee ├── run.coffee ├── sockets.coffee ├── support ├── client.coffee └── tester.coffee ├── views.coffee └── views ├── index.coffee ├── index.eco ├── index.jade ├── layout.coffee ├── layout.eco └── layout.jade /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | material/ 3 | _site -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | zappajs.org 2 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/README.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /benchmarks/express.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/benchmarks/express.coffee -------------------------------------------------------------------------------- /benchmarks/out/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/benchmarks/run -------------------------------------------------------------------------------- /benchmarks/views/index.coffee: -------------------------------------------------------------------------------- 1 | h2 'CoffeeKup file template' 2 | p @foo -------------------------------------------------------------------------------- /benchmarks/views/index.jade: -------------------------------------------------------------------------------- 1 | h2 Jade file template 2 | p= foo -------------------------------------------------------------------------------- /benchmarks/views/layout.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/benchmarks/views/layout.coffee -------------------------------------------------------------------------------- /benchmarks/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/benchmarks/views/layout.jade -------------------------------------------------------------------------------- /benchmarks/zappa.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/benchmarks/zappa.coffee -------------------------------------------------------------------------------- /docs/0.2-peaches/announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.2-peaches/announcement.md -------------------------------------------------------------------------------- /docs/0.2-peaches/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.2-peaches/migration.md -------------------------------------------------------------------------------- /docs/0.2-peaches/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.2-peaches/reference.md -------------------------------------------------------------------------------- /docs/0.3-gumbo/announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.3-gumbo/announcement.md -------------------------------------------------------------------------------- /docs/0.3-gumbo/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.3-gumbo/migration.md -------------------------------------------------------------------------------- /docs/0.3-gumbo/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/0.3-gumbo/reference.md -------------------------------------------------------------------------------- /docs/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/client.html -------------------------------------------------------------------------------- /docs/crashcourse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/crashcourse.md -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/docco.css -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/images/zappa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/images/zappa.png -------------------------------------------------------------------------------- /docs/zappa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/docs/zappa.html -------------------------------------------------------------------------------- /examples/chat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/chat.coffee -------------------------------------------------------------------------------- /examples/express-equivalent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/express-equivalent.coffee -------------------------------------------------------------------------------- /examples/express.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/express.coffee -------------------------------------------------------------------------------- /examples/hi.coffee: -------------------------------------------------------------------------------- 1 | require('./zappa') -> 2 | @get '/': 'hi' -------------------------------------------------------------------------------- /examples/masochism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/masochism.js -------------------------------------------------------------------------------- /examples/postrender.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/postrender.coffee -------------------------------------------------------------------------------- /examples/public/foo.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /examples/views.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/views.coffee -------------------------------------------------------------------------------- /examples/views/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/views/index.coffee -------------------------------------------------------------------------------- /examples/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/views/index.jade -------------------------------------------------------------------------------- /examples/views/layout.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/views/layout.coffee -------------------------------------------------------------------------------- /examples/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/examples/views/layout.jade -------------------------------------------------------------------------------- /examples/zappa.coffee: -------------------------------------------------------------------------------- 1 | ../src/zappa.coffee -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/index.md -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/package.json -------------------------------------------------------------------------------- /src/client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/src/client.coffee -------------------------------------------------------------------------------- /src/zappa.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/src/zappa.coffee -------------------------------------------------------------------------------- /tests/assets.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/assets.coffee -------------------------------------------------------------------------------- /tests/helpers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/helpers.coffee -------------------------------------------------------------------------------- /tests/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/index.coffee -------------------------------------------------------------------------------- /tests/middleware.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/middleware.coffee -------------------------------------------------------------------------------- /tests/public/foo.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /tests/routes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/routes.coffee -------------------------------------------------------------------------------- /tests/run.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/run.coffee -------------------------------------------------------------------------------- /tests/sockets.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/sockets.coffee -------------------------------------------------------------------------------- /tests/support/client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/support/client.coffee -------------------------------------------------------------------------------- /tests/support/tester.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/support/tester.coffee -------------------------------------------------------------------------------- /tests/views.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricemach/zappa/HEAD/tests/views.coffee -------------------------------------------------------------------------------- /tests/views/index.coffee: -------------------------------------------------------------------------------- 1 | h2 "CoffeeKup file template: #{@foo}" -------------------------------------------------------------------------------- /tests/views/index.eco: -------------------------------------------------------------------------------- 1 |