Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@iapps/d2-dashboard
Advanced tools
This library was generated with [Nx](https://nx.dev). DHIS2 Dashboard is angular library that support dashboard visualization both using default dashboard APIs or custom dashboard managed from datastore. It is intended to get incorporated in any DHIS2 ang
This library was generated with Nx. DHIS2 Dashboard is angular library that support dashboard visualization both using default dashboard APIs or custom dashboard managed from datastore. It is intended to get incorporated in any DHIS2 angular application where dashboard is to be one of application page
npm install @iapps/d2-dashboard
Import dashboard module in the root module of your application
import { D2DashboardModule } from '@iapps/d2-dashboard';
...
...
@NgModule({
declarations: [AppComponent],
imports: [
...
...
D2DashboardModule.forRoot({
useDataStore: true,
dataStoreNamespace: 'datastore-dashboard',
rootUrl: 'dashboard',
selectionConfig: {
allowSelectionOnStartUp: false,
startUpPeriodType: 'Monthly',
periodConfig: { openFuturePeriods: 1, allowDateRangeSelection: false },
},
}),
...
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
Then, you can use dashboard module as a lazy loaded route
{
path: 'dashboard',
loadChildren: () =>
import('@iapps/d2-dashboard').then((m) => m.D2DashboardModule),
}
FAQs
This library was generated with [Nx](https://nx.dev). DHIS2 Dashboard is angular library that support dashboard visualization both using default dashboard APIs or custom dashboard managed from datastore. It is intended to get incorporated in any DHIS2 ang
The npm package @iapps/d2-dashboard receives a total of 15 weekly downloads. As such, @iapps/d2-dashboard popularity was classified as not popular.
We found that @iapps/d2-dashboard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.