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

obj-pool

v1.0.0

Published

ObjPool allow you to recycle or allocate objects in a pool easily.

Downloads

25

Readme

obj-pool

ObjPool allow you to recycle or allocate objects in a pool easily. When you need an instance of your object, the pool will return you one of them, or a new instance if it's empty.

Installation

Node.js - Browserify - Webpack

npm install obj-pool
  var ObjPool = require('obj-pool');

Browsers

Add obj-pool.js to your HTML and ObjPool will be added to window

  //window.ObjPool
  if(ObjPool)console.log('Cool!');

Usage

Basic

  //Creating the pool of MyEntity
  var pool = new ObjPool(MyEntity);

  //getting an instance of MyEntity
  var entity = pool.alloc();
  /* do something with entity */

  //put back the entity instance in the pool
  pool.free(entity);

Creating an object with arguments

If your object needs some params you can use {args:[]} option as second param.

  var audioPool = new ObjPool(Audio, {args: ['./assets/audio.mp3']});

Allocating some instances

Use `{amount: N}``

  var pool = new ObjPool(MyEntity, {amount: 100});

Extra

You can use some functions to init and reset your objects.

  function MyEntity(){

  }

  MyEntity.prototype.constructor = MyEntity;

  MyEntity.prototype.init = function(){
    //Do something to initialize me when I go out of my pool
  }

  MyEntity.prototype.reset = function(){
    //Do something with me when I return to my pool
  }

  var pool = new ObjPool(MyEntity);
  var entity = pool.alloc(); //This fire MyEntity.init();
  pool.free(entity); //This fire MyEntity.reset();

If you need other function's names to init and reset, you can change the value of objInitand objReset:

  var pool = new ObjPool(MyEntity);
  pool.objInit = 'initialize'; //Looks for MyEntity.initialize() instead of MyEntity.init();
  pool.objReset = 'resetMe'; //Looks for MyEntity.resetMe() instead of MyEntity.reset();

API

ObjPool

constructor(object [,options])

Pass the objects to create, and the options (Optional) with the amount and object arguments. `{args: [arg1, arg2, ...], amount: 100}'

.alloc()

Return an object to use it and remove it from the pool.

.free()

Put back an object into the pool to reuse it.

.generate(amount)

Create a N numbers of the object and add to the objects list.

.clear()

Erase all the object from the objects list.

.length - (Read only)

Return the objects list length