![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@micro-sentry/breadcrumb-plugin
Advanced tools
[![npm version](https://img.shields.io/npm/v/@micro-sentry/angular.svg)](https://npmjs.com/package/@micro-sentry/angular) [![npm bundle size](https://img.shields.io/bundlephobia/minzip/@micro-sentry/core)](https://bundlephobia.com/result?p=@micro-sentry/c
@micro-sentry is a tiny sentry client to monitor your applications without raising your bundle size.
👜 It is small. So, it is at most 1.9 KB size instead of 22.5 KB by default client but has all the essential functionality
🛠 It is easy to set up. There is a lightweight wrapper for Angular and a browser tool for other frameworks or vanilla.
Angular:
Micro-sentry version | Angular version |
---|---|
>= 6 | >= 14 |
>= 5 | >= 13 |
>= 4 | >= 12 |
>= 3 | >= 11 |
>= 2 | >= 10 |
npm i @micro-sentry/angular
Other:
npm i @micro-sentry/browser
You can use provide api in standalone applications:
import { provideMicroSentry } from '@micro-sentry/angular';
bootstrapApplication(AppComponent, {
providers: [
provideMicroSentry({
dsn: 'https://kj12kj1n23@sentry.domain.com/123',
}),
],
});
Or add it into app.module.ts
of your application:
import { MicroSentryModule } from '@micro-sentry/angular';
@NgModule({
imports: [
// options 1: via module
MicroSentryModule.forRoot({
dsn: 'https://kj12kj1n23@sentry.domain.com/123',
}),
],
providers: [
// option 2: via provide
provideMicroSentry({
dsn: 'https://kj12kj1n23@sentry.domain.com/123',
}),
],
})
export class AppModule {}
If you do not use Angular framework, you can install @micro-sentry/browser
module to create client manually.
const client = new BrowserMicroSentryClient({
dsn: 'https://kj12kj1n23@sentry.domain.com/123',
});
try {
// your app code
} catch (e) {
client.report(e);
}
![]() Igor Katsuba |
![]() Roman Sedov |
🆓 Feel free to use our library in your commercial and private applications
All micro-sentry packages are covered by Apache 2.0
Read more about this license here
FAQs
[![npm version](https://img.shields.io/npm/v/@micro-sentry/angular.svg)](https://npmjs.com/package/@micro-sentry/angular)
The npm package @micro-sentry/breadcrumb-plugin receives a total of 3 weekly downloads. As such, @micro-sentry/breadcrumb-plugin popularity was classified as not popular.
We found that @micro-sentry/breadcrumb-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.