awesome-compose/nginx-nodejs-redis/web/node_modules/denque
ajeetraina 71b622220f modified configuration file for web
Signed-off-by: ajeetraina <ajeetraina@gmail.com>
2022-03-13 13:09:07 +05:30
..
CHANGELOG.md modified configuration file for web 2022-03-13 13:09:07 +05:30
index.d.ts modified configuration file for web 2022-03-13 13:09:07 +05:30
index.js modified configuration file for web 2022-03-13 13:09:07 +05:30
LICENSE modified configuration file for web 2022-03-13 13:09:07 +05:30
package.json modified configuration file for web 2022-03-13 13:09:07 +05:30
README.md modified configuration file for web 2022-03-13 13:09:07 +05:30

Denque

NPM downloads NPM version Tests status Coverage License Follow on Twitter

Denque is a well tested, extremely fast and lightweight double-ended queue implementation with zero dependencies and includes TypeScript types.

Double-ended queues can also be used as a:

This implementation is currently the fastest available, even faster than double-ended-queue, see the benchmarks.

Every queue operation is done at a constant O(1) - including random access from .peekAt(index).

Works on all node versions >= v0.10

Quick Start

Install the package:

npm install denque

Create and consume a queue:

const Denque = require("denque");

const denque = new Denque([1,2,3,4]);
denque.shift(); // 1
denque.pop(); // 4

See the API reference documentation for more examples.


Who's using it?

... and many more.


License


Built and maintained by Invertase.