Skip to main content

Cortex devtools

Cortex is compatible with Redux Devtools

To activate it:

export const Core = createCortexFactory()(services, { debugger: createDebuggerService() });

To use remotely, so it can be used with React Native Debugger:

export const Core = createCortexFactory()(services, { debugger: createDebuggerService({ host: "192.168.1.1", port: 8081 }) });