Koa with coffeescript
Recently, i wanted to try koa.js, but the problem is that generators are not supported in coffee-script yet.
To make them work you have to install coffee-script from github using this command :
npm install jashkenas/coffeescript
And since coffee-script need to detect the yield
keyword to know that we are declaring a generator and not a regular function, you have to tune your code a bit.
Let's take koa's hello world for example :
Original:
var koa = require('koa');
var app = koa();
app.use(function *(){
this.body = 'Hello World';
});
app.listen(3000);
Coffee-script version:
koa = require 'koa'
app = koa()
app.use (next) ->
yield next
this.body = 'Hello World'
app.listen 3000
Have fun experimenting with Koa :)
Written by Frostwind
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Coffeescript
Authors
iam4x
94.17K
ericdfields
63.02K
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#