webworker-threads
Advanced tools
Comparing version 0.5.3 to 0.5.5
@@ -0,1 +1,7 @@ | ||
## 0.5.5 | ||
## Compatibility | ||
* Proper support for Node 0.11.x. (@gitawego) | ||
## 0.4.11 | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "webworker-threads", | ||
"version": "0.5.3", | ||
"version": "0.5.5", | ||
"main": "build/Release/WebWorkerThreads.node", | ||
@@ -39,6 +39,6 @@ "description": "Lightweight Web Worker API implementation with native threads", | ||
"dependencies": { | ||
"nan": "1.2.x" | ||
"nan": "1.6.x" | ||
}, | ||
"devDependencies": { | ||
"LiveScript": "1.2.x" | ||
"LiveScript": "1.3.x" | ||
}, | ||
@@ -45,0 +45,0 @@ "gypfile": true, |
@@ -63,3 +63,3 @@ # WebWorker Threads | ||
After the initialization phase of a Node program, whose purpose is to setup listeners and callbacks to be executed in response to events, the next phase, the proper execution of the program, is orchestrated by the event loop whose duty is to [juggle events, listeners and callbacks quickly and without any hiccups nor interruptions that would ruin its performance](http://youtube.com/v/D0uA_NOb0PE?autoplay=1) | ||
After the initialization phase of a Node program, whose purpose is to setup listeners and callbacks to be executed in response to events, the next phase, the proper execution of the program, is orchestrated by the event loop whose duty is to [juggle events, listeners and callbacks quickly and without any hiccups nor interruptions that would ruin its performance](https://youtu.be/D0uA_NOb0PE). | ||
@@ -66,0 +66,0 @@ Both the event loop and said listeners and callbacks run sequentially in a single thread of execution, Node's main thread. If any of them ever blocks, nothing else will happen for the duration of the block: no more events will be handled, no more callbacks nor listeners nor timeouts nor nextTick()ed functions will have the chance to run and do their job, because they won't be called by the blocked event loop, and the program will turn sluggish at best, or appear to be frozen and dead at worst. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
246294