##Using libuv and http-parser to build a webserver
Ryan Dahl, @ryah
http://vimeo.com/24713213
Source, Part I: http://t.co/utoIM93
Source, Part II: http://bit.ly/iBgnIA
##Node.js on windows
Bert Belder
http://2bs.nl/nodecamp.pdf
| #!/bin/sh | |
| CURRENT=$(node -v) | |
| VERSION=$(curl -L -s http://nodejs.org/dist/latest/ \ | |
| | egrep -o '[0-9]+\.[0-9]+\.[0-9]+' \ | |
| | tail -n1) | |
| PLATFORM=darwin | |
| ARCH=x64 | |
| PREFIX="$HOME/node-v$VERSION-$PLATFORM-$ARCH" |
| #include <SDKDDKVer.h> | |
| #include <Windows.h> | |
| #pragma warning(disable:4819) | |
| #pragma warning(disable:4996) | |
| // for OpenCV2 | |
| #include "opencv2/imgproc/imgproc.hpp" | |
| #include "opencv2/objdetect/objdetect.hpp" | |
| #include "opencv2/gpu/gpu.hpp" |
| msgpack = require("msgpack-0.4"); | |
| msgpack.pack(JSON.parse(require("fs").readFileSync("../var/inputs.json"))) |
##Using libuv and http-parser to build a webserver
Ryan Dahl, @ryah
http://vimeo.com/24713213
Source, Part I: http://t.co/utoIM93
Source, Part II: http://bit.ly/iBgnIA
##Node.js on windows
Bert Belder
http://2bs.nl/nodecamp.pdf
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!