
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@nahuelmorata/framework-frontend
Advanced tools
| Version | Angular Version |
|---|---|
| v1.x.x | v9.x.x |
| v2.x.x | v10.x.x |
| v3.x.x | v11.x.x |
| v4.x.x | v12.x.x |
| v5.x.x | v13.x.x |
| v6.x.x | v14.x.x |
| v7.x.x | v15.x.x |
| v8.x.x | v16.x.x |
| v17.x.x | v17.x.x |
| v18.x.x | v18.x.x |
| v19.x.x | v19.x.x |
Con npm
npm i @microsoft/signalr @sentry/angular
Con yarn
yarn add @microsoft/signalr @sentry/angular
Con npm
npm i @nahuelmorata/framework-frontend
Con yarn
yarn add @nahuelmorata/framework-frontend
En el app.module.ts
@NgModule({
//...
imports: [
// other imports
FrameworkFrontendModule.forRoot({
apiURL: Constantes.apiURL,
logger: {
transportadores: {
consola: true,
slack: {
activado: false,
idCanal: '',
token: '',
}
}
}
}),
// other imports
]
// ...
})
export class AppModule { }
export interface FrontendConfig {
apiURL: string; // URL de la api
logger?: LoggerConfiguracion; // Configuracion de los loggers
desarrollo?: boolean; // modo de desarrollo
}
export interface LoggerConfiguracion {
transportadores: {
consola: boolean; // Consola activada para enviar errores
slack?: { // Configuracion para enviar a Slack
activado: boolean; // Loggear a Slack activado
idCanal: string; // Id del canal de Slack
token: string; // Token de seguridad para Slack
};
sentry?: { // configuracion para enviar a Sentry
activado: boolean; // Loggear a Sentry activado
dsn: string;
tracesSampleRate?: number;
tracePropagationTargets?: (string | RegExp)[];
replaysSessionSampleRate?: number;
replaysOnErrorSampleRate?: number;
};
};
}
FAQs
[Contactame](mailto:contacto@nahuelmorata.com.ar)
We found that @nahuelmorata/framework-frontend demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.