Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9134383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:39:01+00:00 2026-06-17T08:39:01+00:00

What is the ember.js community recommendation for reporting Ember app crashes? I’m looking for

  • 0

What is the ember.js community recommendation for reporting Ember app crashes? I’m looking for the equivalent of the exception_notifier gem in Rails so that I can be notified if users are experiencing errors.

This Stack Overflow post recommends generic javascript error handling solutions including:

  • Handle window.onerror yourself
  • Use a hosted service that handles window.onerror for you like Airbrake.io or Muscula

I’m hoping there is some kind of Mixin that gives you all this error handling code, and provides richer error messages (such as the current route when the error occurred, etc). Does this exist yet? If not, what are people doing to solve this problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T08:39:02+00:00Added an answer on June 17, 2026 at 8:39 am

    Any error reporting like the Rails gem is going to depend on some sort of server backend to handle the error, such as emailing admins, etc. It makes sense that Rails would have a whole gem dedicated to this sort of thing, since Rails is going to have the whole stack trace, session, and all sorts of other variables that are convenient(/necessary) to have for debugging the issue, but for front-end apps (e.g. Ember), all the error information is on the client side, so all the backend logic would do is expose an API that your Ember app can talk to which would forward whatever information you send to it from the app and send it to your email, or whatever you want to do with it.

    To do this in Ember, you can specify the Ember.onerror function:

    Ember.onerror = function(error) {
      caught = error; 
      Em.$.ajax('/report-error', 'POST', {
         stack: error.stack,
         otherInformation: 'whatever app state you want to provide'
      });
    };
    

    This receives the JavaScript Error object that was thrown, which may or may not have the non-standard stack property that contains the stack trace which you could send to the server among any other App-specific state you’d want to send, though you’d probably want to keep it simple so that you don’t cause other errors and end up in a crazy error loop from hell.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Ember.js app that has a Checklist model, where each Checklist has
I am writing an Ember app that consists of a handful of complex, stateful
In Ember.js documentation it states that you can bind attributes to a Boolean value.
I'm using an Ember.CollectionView with an itemView that contains {{bindAttr class=App.offersController.filters.profile:selected}} . When App.offersController.filters
I'm using Ember to make a web app, where you can see different outcomes
I've got an Ember.js app that uses the Ember.Router structure . My app structure
I building a ember.js app that also ties into some other jQuery plugins. I
Using ember 1.0.0-pre3 I have a little app that has this code: window.App =
With ember-data I'm loading all records of a model with: App.adapter = DS.Adapter.create({ findAll:
When I use the Ember Router, how can I define actions in the template

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.