cyclist
Advanced tools
Weekly downloads
Readme
Cyclist is an efficient cyclic list implemention for Javascript. It is available through npm
npm install cyclist
Cyclist allows you to create a list of fixed size that is cyclic. In a cyclist list the element following the last one is the first one. This property can be really useful when for example trying to order data packets that can arrive out of order over a network stream.
var cyclist = require('cyclist')
var list = cyclist(4)
list.put(42, 'hello 42') // store something and index 42
list.put(43, 'hello 43') // store something and index 43
console.log(list.get(42)) // prints hello 42
console.log(list.get(46)) // prints hello 42 again since 46 - 42 == list.size
cyclist(size)
creates a new buffercyclist#get(index)
get an object stored in the buffercyclist#put(index,value)
insert an object into the buffercyclist#del(index)
delete an object from an indexcyclist#size
property containing current size of bufferMIT
FAQs
Cyclist is an efficient cyclic list implemention.
The npm package cyclist receives a total of 6,093,452 weekly downloads. As such, cyclist popularity was classified as popular.
We found that cyclist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.