Comparing version 0.0.1 to 0.1.0
{ | ||
"name": "js-queue", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"description": "Simple JS queue with auto run for node and browsers", | ||
@@ -5,0 +5,0 @@ "main": "queue.js", |
27
queue.js
@@ -15,7 +15,12 @@ function Queue(){ | ||
}, | ||
length:{ | ||
clear:{ | ||
enumerable:true, | ||
get:getLength, | ||
set:getLength | ||
writable:false, | ||
value:clearQueue | ||
}, | ||
contents:{ | ||
enumerable:false, | ||
get:getQueue, | ||
set:setQueue | ||
}, | ||
autoRun:{ | ||
@@ -37,6 +42,16 @@ enumerable:true, | ||
var stop=false; | ||
function getLength(){ | ||
return queue.length; | ||
function clearQueue(){ | ||
queue=[]; | ||
return queue; | ||
} | ||
function getQueue(){ | ||
return queue; | ||
} | ||
function setQueue(val){ | ||
queue=val; | ||
return queue; | ||
} | ||
@@ -43,0 +58,0 @@ function addToQueue(){ |
218
README.md
# js-queue | ||
# Stable | ||
Works great in node.js, webpack, browserify, or any other commonjs loader or compiler. To use in plain old vanilla browser javascript without common js just replace the requires in the examples with script tags. We show that below too. | ||
## Great for | ||
1. socket communication | ||
2. async operations | ||
3. synchronous operations | ||
4. atomic operations | ||
3. code with requirements before executing code | ||
4. queues you want to start execution any time you add a new item | ||
5. any simple or complex queue operations | ||
6. base class to extend | ||
7. anything else that needs a queue | ||
## Exposed methods and values | ||
|key|type|paramaters|default|description| | ||
|----|----|----|----|----| | ||
|add|function|any number of functions| |adds all parameter functions to queue and starts execution if autoRun is true, queue is not already running and queue is not forcibly stopped | | ||
|next|function| | |executes next item in queue if queue is not forcibly stopped| | ||
|clear|function| | |removes remaining items in the queue| | ||
|contents|Array| | | Queue instance contents | | ||
|autoRun|Bool| | true |should autoRun queue when new item added| | ||
|stop|Bool| | false |setting this to true will forcibly prevent the queue from executing| | ||
### Basic queue use in node, react, browserify, webpack or any other commonjs implementation | ||
```javascript | ||
var Queue=require('js-queue'); | ||
//create a new queue instance | ||
var queue=new Queue; | ||
for(var i=0; i<50; i++){ | ||
//add a bunch of stuff to the queue | ||
queue.add(makeRequest); | ||
} | ||
function makeRequest(){ | ||
//do stuff | ||
console.log('making some request'); | ||
this.next(); | ||
} | ||
``` | ||
### Basic browser use | ||
The only difference is including via a script tag instead of using require. | ||
```html | ||
<html> | ||
<head> | ||
<!-- this is the only difference --> | ||
<script src='./queue.js'></script> | ||
<script> | ||
console.log('my awesome app script'); | ||
var queue=new Queue; | ||
for(var i=0; i<50; i++){ | ||
queue.add(makeRequest); | ||
} | ||
function makeRequest(){ | ||
console.log('making some request'); | ||
this.next(); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> | ||
``` | ||
### Basic use with websockets in node, react, browserify, webpack or any other commonjs implementation | ||
This allows you to start adding requests immediately and only execute if the websocket is connected. To use in plain browser based JS without webpack or browserify just replace the requires with the script tag. | ||
```javascript | ||
var Queue=require('js-queue'); | ||
//ws-share just makes it easier to share websocket code and ensure you don't open a websocket more than once | ||
var WS=require('ws-share'); | ||
//js-message makes it easy to create and parse normalized JSON messages. | ||
var Message=require('js-message'); | ||
//create a new queue instance | ||
var queue=new Queue; | ||
//force stop until websocket opened | ||
queue.stop=true; | ||
var ws=null; | ||
function startWS(){ | ||
//websocket.org rocks | ||
ws=new WS('wss://echo.websocket.org/?encoding=text'); | ||
ws.on( | ||
'open', | ||
function(){ | ||
ws.on( | ||
'message', | ||
handleResponse | ||
); | ||
//now that websocket is opened allow auto execution | ||
queue.stop=false; | ||
queue.next(); | ||
} | ||
); | ||
ws.on( | ||
'error', | ||
function(err){ | ||
//stop execution of queue if there is an error because the websocket is likely closed | ||
queue.stop=true; | ||
//remove remaining items in the queue | ||
queue.clear(); | ||
throw(err); | ||
} | ||
); | ||
ws.on( | ||
'close', | ||
function(){ | ||
//stop execution of queue when the websocket closed | ||
queue.stop=true; | ||
} | ||
); | ||
} | ||
//simulate a lot of requests being queued up for the websocket | ||
for(var i=0; i<50; i++){ | ||
queue.add(makeRequest); | ||
} | ||
var messageID=0; | ||
function handleResponse(e){ | ||
var message=new Message; | ||
message.load(e.data); | ||
console.log(message.type,message.data); | ||
} | ||
function makeRequest(){ | ||
messageID++; | ||
var message=new Message; | ||
message.type='testMessage'; | ||
message.data=messageID; | ||
ws.send(message.JSON); | ||
this.next(); | ||
} | ||
startWS(); | ||
``` | ||
# Extending Queue | ||
```javascript | ||
var Queue=require('js-queue'); | ||
function MyAwesomeQueue(){ | ||
//merge this and Queue inorder to extend | ||
Object.assign(this,new Queue); | ||
//extend with some stuff your app needs, maybe npm publish your extention with js-queue as a dependancy? | ||
Object.defineProperties( | ||
this, | ||
{ | ||
isStopped:{ | ||
enumerable:true, | ||
get:checkStopped, | ||
set:checkStopped | ||
}, | ||
removeThirdItem:{ | ||
enumerable:true, | ||
writable:false, | ||
value:removeThird | ||
} | ||
} | ||
); | ||
//enforce Object.assign for extending by locking down Class structure | ||
//no willy nilly cowboy coding | ||
Object.seal(this); | ||
function checkStopped(){ | ||
return this.stop; | ||
} | ||
function removeThird(){ | ||
//get the queue content | ||
var list=this.contents; | ||
//modify the queue content | ||
list.splice(2,1); | ||
//save the modified queue content | ||
this.contents=list; | ||
return this.contents; | ||
} | ||
} | ||
``` |
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
8491
68
220