kaffeine
kaffeine copied to clipboard
Extended Javascript for Pros
Hi, I installed Kaffeine with: ``` bash npm install kaffeine ``` and get this error when i try to execute kaffeine ``` module.js:337 throw new Error("Cannot find module '" +...
Wildcard update to latest version seems to be broken with later versions of npm https://github.com/npm/npm/issues/13555
the pipe operator can be used as a variable name in http://weepy.github.io/kaffeine/docs/try.html `| = 1` transforms into `var __; __ = 1;` ~your artificial helper
I was trying this project out, there's a nice webpage at http://weepy.github.io/kaffeine/index.html However, the content there doesn't seem to correspond to the latest version of this repository. In particular the...
Implicit text-only status for `script` and `style` tags in jade has been [deprecated](https://github.com/visionmedia/jade/pull/1036), and will be removed in a future version. To be prepared, all you need to do is...
var x = 0; do { x++; console.log(x); } while(x < 10); Actual Result: Error: Unexpected token: keyword (while) (line: 4, col: 3, pos: 66) Expected result: Same output code...
Are there plans to develop a method to easily generate a javascript for...in loop like: ``` javascript var obj = {a: 'a', b: 'b'} for (var key in obj) {...
This: `````` switch(1) { case 'a': console.log('..'); }``` Gives this error: >> Error: Unexpected token: punc ({) (line: 0, col: 19, pos: 19) Obviously, this is not real code. It...
With v. 0.15 and also the live web demo: (1/2 + (1/2)) yields: Error: TypeError: Cannot set property 'matching' of undefined (1/2 + 1/2) works fine. I assume the extra...