npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

circle-buffer

v0.1.5

Published

A simple circular array buffer

Downloads

28

Readme

Circle Buffer

CI Tests

A simple circular array buffer for efficient management of string data in JavaScript/TypeScript.

Installation

npm install circle-buffer --save

Usage

import { CircularBuffer } from 'circle-buffer';

// Create a circular buffer with a limit of 5
const buffer = new CircularBuffer({ limit: 5 });

// Add values to the buffer
buffer.forward('A');
buffer.forward('B');
buffer.forward('C');

// Get the current state of the buffer
console.log(buffer.get()); // Output: 'ABC'

// Rewind the buffer
buffer.rewind();

// Get the updated buffer state
console.log(buffer.get()); // Output: 'AB'

// Reset the buffer
buffer.reset();

// Get the buffer state after reset
console.log(buffer.get()); // Output: ''

API

CircularBuffer

Constructor

  • new CircularBuffer(options: { limit: number }): CircularBuffer

    Creates a new instance of the CircularBuffer class with the specified limit.

    • options.limit: The maximum number of elements the circular buffer can hold.

Methods

  • get(): string

    Returns a string representation of the current state of the circular buffer.

  • reset(): void

    Resets the circular buffer by filling it with empty strings.

  • forward(value: string): void

    Moves the buffer forward by one position, adding the provided value at the end of the buffer. If the buffer is full, the oldest value is removed.

    • value: The string value to be added to the buffer.
  • rewind(): void

    Moves the buffer backward by one position, removing the last value. If the buffer becomes empty, an empty string is added at the beginning.

Use Cases

Suitable for various use cases involving the management of circular buffers that exclusively store strings or characters. Some potential use cases include:

  1. Input History in a Console or Terminal:

    • Maintain a history of user inputs with a fixed size.
  2. Text Animation:

    • Create scrolling text displays or text-based animations.
  3. Textual Undo/Redo Functionality:

    • Implement undo and redo functionality for changes made to a string.
  4. Rotating Text Displays:

    • Display a rotating set of messages or information.
  5. Logging Recent Events:

    • Log recent events in a string format within a fixed-size buffer.
  6. String History in Interactive Applications:

    • Manage a history of user inputs or actions involving strings.
  7. String-based Sliding Windows:

    • Process a stream of string data and keep track of recent strings.
  8. Fixed-Size String Buffer in Resource-Constrained Environments:

    • Manage string data efficiently in resource-constrained environments.

License

This project is licensed under the MIT License - see the LICENSE file for details.