Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webworker-threads

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webworker-threads - npm Package Compare versions

Comparing version 0.5.3 to 0.5.5

6

CHANGES.md

@@ -0,1 +1,7 @@

## 0.5.5
## Compatibility
* Proper support for Node 0.11.x. (@gitawego)
## 0.4.11

@@ -2,0 +8,0 @@

6

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc