Create an instance without new.
npm install -S @jswork/next-instanceimport '@jswork/next-instance'; class Person { constructor(name, age) { this.name = name; this.age = age; } } const p1 = nx.instance(Person, 'fei', 100); // Person { name: 'fei', age: 100 }Code released under the MIT license.