# memoryutil

> this is a package for object managing by objectpool

Latest version **1.0.2** (published 2018-05-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install memoryutil
pnpm add memoryutil
yarn add memoryutil
bun add memoryutil
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2018-05-11 |
| First published | 2018-05-11 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 19.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | huangyanbei |

## Links

- npm: https://www.npmjs.com/package/memoryutil
- Repository: https://github.com/pandy123/MemoryManager
- Homepage: https://github.com/pandy123/MemoryManager#readme
- Issues: https://github.com/pandy123/MemoryManager/issues
- npm.io page: https://npm.io/package/memoryutil

## Recent versions

- 1.0.2 (latest) — 2018-05-11
- 1.0.1 — 2018-05-11
- 1.0.0 — 2018-05-11

## README

# MemoryManger

#install
```js
npm install memoryutil
```

#use

```js
var MemoryManager = require('memoryutil').MemoryManger
var memeorypool = new MemoryManager()
var Point = function(x, y) {
    this.x = x
    this.y = y
}

var Line = function(point1, point2) {
    this.start = point1
    this.end = point2
}

var point1 = memeorypool.allocateObject(Point)
var point2 = memeorypool.allocateObject(Point)
var line = memeorypool.allocateObject(Line)
```

---
_Source: https://npm.io/package/memoryutil · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
