
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@sentry/ember
Advanced tools
This package is an Ember addon that wraps @sentry/browser
, with added functionality related to Ember. All methods available in
@sentry/browser
can be imported from @sentry/ember
.
As with other Ember addons, run:
ember install @sentry/ember
Then add the following config to config/environment.js
ENV['@sentry/ember'] = {
sentry: {
dsn: '__DSN__' // replace __DSN__ with your DSN
}
};
To use this SDK, call InitSentryForEmber
before the application is initialized, in app.js
. This will load Sentry config from environment.js
for you.
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
import config from './config/environment';
import { InitSentryForEmber } from '@sentry/ember';
InitSentryForEmber();
export default class App extends Application {
modulePrefix = config.modulePrefix;
podModulePrefix = config.podModulePrefix;
Resolver = Resolver;
}
Aside from configuration passed from this addon into @sentry/browser
via the sentry
property, there is also the following Ember specific configuration.
ENV['@sentry/ember'] = {
ignoreEmberOnErrorWarning: false, // Will silence Ember.onError warning without the need of using Ember debugging tools. False by default.
sentry: ... // See sentry-javascript configuration https://docs.sentry.io/error-reporting/configuration/?platform=javascript
};
@sentry/ember
currently supports Ember 3.8+ for error monitoring.
Previously we've recommended using the Ember integration from @sentry/integrations
but moving forward we will be using
this Ember addon to offer more Ember-specific error and performancing monitoring.
You can find example instrumentation in the dummy
application, which is also used for testing. To test with the dummy
application, you must pass the dsn as an environment variable.
SENTRY_DSN=__DSN__ ember serve
FAQs
Official Sentry SDK for Ember.js
The npm package @sentry/ember receives a total of 26,065 weekly downloads. As such, @sentry/ember popularity was classified as popular.
We found that @sentry/ember demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.