NcScale is shutting down – any alternatives for logging WeWeb and Xano?

Hi everyone,

NcScale is shutting down on March 21, and we’ve been using it to log Xano and WeWeb. It worked seamlessly without complicated setups.

We’re now looking for a similar alternative that can log both Xano and WeWeb without requiring custom API endpoints or complex configurations.

Has anyone found a good replacement? Would love to hear your recommendations!

Thanks!

1 Like

Hey Andrii,

I’ve been using Sentry for logging errors in both WeWeb and Xano, and it’s been working pretty smoothly.

I created a global workflow that runs on app load (before fetching collections) and placed the following code in a JS block to capture and send all errors to Sentry, including Xano errors. It doesn’t require any custom API endpoints and is relatively easy to configure.

wwLib.getFrontWindow().axios.interceptors.response.use(
  response => response, 
  error => {
    // Capture all errors in Sentry
    Sentry.captureException(error);

    // Propagate the error to the rest of your error handling logic
    return Promise.reject(error);
  }
);

Hope that helps!

3 Likes

I just setup Sentry… wow, should have done that a long time ago. Very cool tool to help debug frontend issues that don’t show up in Xano.

@Alchuu Were you able to upload source maps? If so, could you provide a mini-tutorial? I’m a bit lost on how to accomplish this with WeWeb.

Hey @ericp! I actually haven’t looked into source maps yet—just set up Sentry for basic error tracking in WeWeb for now. It’s already been super helpful, even without digging into the deeper configuration. Would love to hear how it goes if you manage to set it up!

Oh wow, I just set up Sentry and it’s amazing, works super smoothly. Thank you so much!!!