This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* @param {Function} callback | |
* @return {Function} | |
*/ | |
var fixEventType = function (callback) { | |
var eventFired = false, | |
eventStack = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. sudo apt-get install python g++ make checkinstall | |
2. mkdir ~/src && cd $_ | |
3. wget -N http://nodejs.org/dist/node-latest.tar.gz | |
4. tar xzvf node-latest.tar.gz && cd node-v* | |
5. ./configure | |
6. sudo checkinstall -y --install=no --pkgversion 0.10.24 | |
7. # optional " -- make –j x install" mit x = Anzahl der CPU Kerne | |
8. sudo dpkg -i node_* | |
9. Node global aufrufbar machen: | |
a. /.profile oder ~/.bash_profile oder ~/.bashrc oder ~/.zshenv |