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

@omts/disposable

v0.0.3

Published

A lightweight, efficient `DisposableSet` implementation in TypeScript for managing multiple disposable resources. This package simplifies the lifecycle management of both synchronous and asynchronous disposables with built-in error handling and easy-to-us

Downloads

98

Readme

@omts/disposable 🚀

A lightweight, efficient DisposableSet implementation in TypeScript for managing multiple disposable resources. This package simplifies the lifecycle management of both synchronous and asynchronous disposables with built-in error handling and easy-to-use APIs.

Installation 📦

Install the package via npm or pnpm:

npm install @omts/disposable

or

pnpm add @omts/disposable

Usage ✨

The package exports a DisposableSet class that allows you to manage a set of IDisposable objects, providing easy resource cleanup with support for both synchronous and asynchronous disposal.

Example

Create an instance of DisposableSet and add disposable resources to it:

import { DisposableSet, IDisposable } from '@omts/disposable';

// Define a disposable resource
class MyResource implements IDisposable {
  dispose(): void {
    console.log('Resource1 disposed');
  }
}

// Add a disposable class instance resource to the set
const disposable1 = new MyResource();

// or you can use the static `create` method:
const disposable2 = DisposableSet.create(() => {
 console.log('Resource2 disposed');
});

const set = new DisposableSet();
set.add(disposable, disposable2);

// Synchronously dispose all resources
set.dispose();
 // Output: 
 // "Resource1 disposed"
 // "Resource2 disposed"

Example with Asynchronous Disposal

You can also manage resources that implement asynchronous dispose() methods:

class AsyncResource implements IDisposable {
  async dispose(): Promise<void> {
    console.log('Async resource disposed');
    return new Promise(resolve => setTimeout(resolve, 1000));
  }
}

const set = new DisposableSet();
const asyncDisposable = new AsyncResource();
set.add(asyncDisposable);

// Asynchronously dispose all resources
await set.disposeAsync(); // Output (after 1 second): "Async resource disposed"

Using Static Methods

The DisposableSet class provides static helper methods to check if an object is disposable and to create disposable objects.

DisposableSet.is()

This method checks if a given object conforms to the IDisposable interface.

const obj = { dispose: () => console.log('Disposed') };

if (DisposableSet.is(obj)) {
  obj.dispose(); // Output: "Disposed"
}

DisposableSet.create()

This method creates a disposable object with a custom dispose() function.

const disposable = DisposableSet.create(() => {
  console.log('Custom disposal logic executed');
});

disposable.dispose(); // Output: "Custom disposal logic executed"

Error Handling

You can register custom error handlers to capture and manage any errors that occur during the disposal process:

const set = new DisposableSet();

// Register a custom error handler
set.onError((error, disposable) => {
  console.error(`Error disposing resource: ${error.message}`);
});

const faultyDisposable: IDisposable = {
  dispose: () => { throw new Error('Failed to dispose resource'); }
};

set.add(faultyDisposable);

// Attempt to dispose the resources
set.dispose(); // Output: "Error disposing resource: Failed to dispose resource"

Key Features ✨

  • Synchronous and Asynchronous Disposal: Manage both sync and async dispose() methods, ensuring flexible resource lifecycle management.
  • Static Helper Methods: Built-in static methods (is, create) for checking if an object is disposable and for creating disposable objects.
  • Error Handling: Built-in error handling mechanism that allows you to register custom error handlers to manage exceptions during disposal.
  • Efficient Resource Management: Uses Set to manage disposables for fast lookups and removals.
  • Automatic Resource Cleanup: Resources are automatically removed from the set after they are disposed.

API Documentation 📚

  • push(...disposables: IDisposable[]): IDisposable: Adds one or more disposables to the set. Returns a Disposable that can be used to remove the added disposables from the set.

    • Returns: A Disposable to remove the disposables from the set.
  • dispose(): void: Synchronously disposes all resources in the set. If an async dispose() is detected, a warning is logged.

  • disposeAsync(): Promise<void>: Asynchronously disposes all resources in the set. Waits for any Promise-based disposal methods to complete before resolving.

  • onError(handler: (error: Error, disposable: IDisposable) => void): IDisposable: Registers a custom error handler to capture any errors that occur during disposal.

    • Returns: A Disposable to remove the error handler.
  • Static Methods:

    • DisposableSet.is(arg: unknown): arg is IDisposable: Checks if a given object implements the IDisposable interface.
    • DisposableSet.create(func: () => void): IDisposable: Creates a Disposable object with a custom dispose function.

Complexity 📊

  • Time Complexity:

    • Adding or removing disposables: O(1) with Set.
    • Disposing resources: O(n), where n is the number of disposables.
    • Error handling: O(m), where m is the number of error handlers.
  • Space Complexity:

    • O(n + m), where n is the number of disposables and m is the number of error handlers.

Development 🛠️

Bun and Development Setup ⚙️

  1. Install Bun: Visit the official Bun website for installation instructions.

  2. Install Bun VSCode Extension: Install the Bun for Visual Studio Code extension by Oven from the Visual Studio Marketplace.

  3. Debugging with Bun:

    • Set a breakpoint in index.ts by adding debugger.
    • Switch to index.test.ts, then open the command palette (Cmd + Shift + P on Mac, Ctrl + Shift + P on Windows/Linux) and select Bun: Debug.

Development Commands

  • clean: Removes the dist directory.
    pnpm run clean

  • build: Cleans and builds the package.
    pnpm run build

  • tdd: Runs the tests in watch mode, useful for Test-Driven Development.
    pnpm run tdd

  • test: Runs all test cases.
    pnpm run test

  • prepublishOnly: Runs the build command before publishing.
    pnpm run prepublishOnly

Contributing 🤝

Contributions are welcome! If you have any improvements, suggestions, or bug fixes, please feel free to open an issue or submit a pull request.

License ⚖️

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


Happy coding with @omts/disposable! 🎉

Feel free to use, contribute, and star the repository if you find it useful!