singleton-pattern 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  > **Note**: Your environment must support ES6 Proxies.
6
6
 
7
+ For more awesome packages, check out [my homepage💛](https://baendlorel.github.io/?repoType=npm)
8
+
7
9
  ## Overview
8
10
 
9
11
  `singleton-pattern` is a lightweight TypeScript/JavaScript utility that wraps a class constructor so that every `new` call returns the same instance. It uses Proxy to ensure singleton safety, and provides options for prototype and proxy reuse.
package/dist/index.d.ts CHANGED
@@ -1,15 +1,28 @@
1
1
  // # from: global.d.ts
2
2
  type Class = new (...args: any[]) => any;
3
+ type ProxiedClass = new (...args: any[]) => any;
3
4
 
4
5
  interface SingletonifyOptions {
5
6
  /**
6
7
  * Preventing the `.prototype.constructor` from being accessed
7
- * - default is `true`
8
- * - **Only** when it is `false`, will remain the original constructor unchanged
8
+ *
9
+ * Default is `true`
10
+ * - use Boolean Evaluation
11
+ * - it is **not recommended** to set this to `false`
12
+ * - if it is falsy, will remain the original constructor unchanged
9
13
  * - will change `Origin.prototype.constructor` to the singletonified class
10
14
  * - this means Origin.prototype.constructor !== origin
11
15
  */
12
- hideProtoConstructor?: boolean;
16
+ changeProtoConstructor?: boolean;
17
+
18
+ /**
19
+ * Default is `true`
20
+ * - use Boolean Evaluation
21
+ * - it is **not recommended** to set this to `false`
22
+ * - if it is falsy, it will create a new singletonified class every time and will not cache it
23
+ * - by default, wrap a class multiple times will always return the same singletonified class
24
+ */
25
+ onlyOnce?: boolean;
13
26
  }
14
27
 
15
28
  // # index.d.ts
@@ -18,12 +31,13 @@ interface SingletonifyOptions {
18
31
  * Just wrap your class with this function to create a new class that always returns the same instance
19
32
  * @param target The class to be wrapped
20
33
  * @param options Advanced options
21
- * - hideProtoConstructor(default: `true`) when it is **not** `false`, will set `target.prototype.constructor` to the singletonified class
34
+ * - changeProtoConstructor(default: `true`) will set `target.prototype.constructor` to the singletonified class
35
+ * - onlyOnce(default: `true`) will cache the input and always return the same proxied class
22
36
  *
23
37
  * ## About
24
38
  * @package SingletonPattern
25
39
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
26
- * @version 1.0.0 (Last Update: 2025.08.15 10:00:01.902)
40
+ * @version 1.1.1 (Last Update: 2025.08.15 11:07:44.767)
27
41
  * @license MIT
28
42
  * @link https://github.com/baendlorel/singleton-pattern
29
43
  * @description Wrap a class with proxy to make it a safe singleton constructor. Using new Class() will return the same instance.
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- const n=Proxy;const t=new class{map=new WeakMap;singletonify(t,e){let o;const s=new n(t,{construct:(n,t)=>(o||(o=new n(...t)),o)});return!1!==(null==e?void 0:e.hideProtoConstructor)&&(s.prototype.constructor=s),this.map.set(s,t),s}getSingletonTarget(n){return this.map.get(n)}},e=t.singletonify.bind(t),o=t.getSingletonTarget.bind(t);export{o as getSingletonTarget,e as singletonify};
1
+ const t=Proxy,n=Object;const e=new class{p2c=new WeakMap;c2p=new WeakMap;singletonify(e,o){const{changeProtoConstructor:s=!0,onlyOnce:c=!0}=n(o);if(c&&this.c2p.has(e))return this.c2p.get(e);let r;const i=new t(e,{construct:(t,n)=>(r||(r=new t(...n)),r)});return s&&(i.prototype.constructor=i),c&&(this.p2c.set(i,e),this.c2p.set(e,i)),i}getSingletonTarget(t){return this.p2c.get(t)}},o=e.singletonify.bind(e),s=e.getSingletonTarget.bind(e);export{s as getSingletonTarget,o as singletonify};
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "singleton-pattern",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "author": {
5
5
  "name": "Kasukabe Tsumugi",
6
6
  "email": "futami16237@gmail.com"
7
7
  },
8
8
  "description": "Wrap a class with proxy to make it a safe singleton constructor. Using new Class() will return the same instance.",
9
+ "description_zh": "使用代理包装类以使其成为安全的单例构造函数(原型的构造函数也将被修改)。使用 new Class() 将返回相同的实例",
9
10
  "type": "module",
10
11
  "exports": {
11
12
  "import": "./dist/index.mjs",