
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
nativescript-sentry-temp
Advanced tools
Sentry.io NativeScript plugin. (Temporary version which it still wait for merging it by the original author, `danielgek`)
This plugin uses sentry-android and sentry-cocoa to catch native errors/stack traces and send them to a sentry server.
NOTE: If you have a native exeption and the app exits the plugin will save the log and send it in the next app startup, this is how the native plugins are implemented and it is expected behavior
tns plugin add nativescript-sentry
import { Sentry } from 'nativescript-sentry';
const dsn = 'https://<key>:<secret>@host/<project>';
Sentry.init(dsn);
import { SentryModule } from 'nativescript-sentry/angular';
NgModule({
...
imports: [
SentryModule.forRoot({dsn: 'https://<key>:<secret>@host/<project>'})
],
Note: this plugin adds a custom ErrorHandler and automatically provides it
Sentry.init(dsn: string, options: SentryOptions)
Sentry.captureException(exeption: Error, options: SentryOptions)
Example:
try {
throw 'try catch Exception example'
} catch(error) {
Sentry.captureException(error, {});
}
Sentry.captureMessage(message: string, options: SentryOptions)
Sentry.captureBreadcrumb(breadcrumb:SentryBreadcrumb)
Sentry.setContextUser(user: SentryUser)
Sentry.setContextTags(tags: any)
Sentry.setContextExtra(extra: any)
`Sentry.clearContext()``
11/12/2017 - (1.5.0):
BREAKING CHANGES
capture() method was deprecated in favor of captureMessage/captureExceptionFeatures
28-08-2017 - (1.3.0):
2-08-2017 - (1.2.0):
24-07-2017 - (1.1.0):
FAQs
Sentry.io NativeScript plugin. (Temporary version which it still wait for merging it by the original author, `danielgek`)
We found that nativescript-sentry-temp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.