Martin Tapia

Results 17 comments of Martin Tapia

Does it happen on other websites? Is the website so heavy that maybe you have no memory left? What have to tried? Thx

Maybe start NickJS in debug mode (`debug: true` in constructor) and we can see some output showing us what's wrong

Well, it looks like the 9222 port is already in use on your system. Maybe you already have Chrome running with debug enabled, even though NickJS tries to start a...

Oh ok, I see. That means your node instances are started with debugging enabled right? You can use `additionalChildOptions` (array of command line parameters) to change how Chrome is started...

Good question. NickJS detects when Chrome itself crashes. (It sets `tab.crashed` to `true` for each active tab.) Do you know of a way to reliably make a tab crash? I've...

It's not clear in my head what you're trying to achieve. Can you describe your use case in more details? `nick.exit()` will kill all chrome processes. You can also kill...

@nieltg I updated yours to handle `unknown` ```typescript type Primitive = undefined | null | boolean | string | number | Function export type DeepImmutable = T extends Primitive ?...