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.
@dpc-sdp/myvic-data-driven-component
Advanced tools
**This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.**
This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.
A module to allow editors in SDP Tide CMS to add charts/maps into a content page.
npm install @dpc-sdp/myvic-data-driven-component --save
In SDP project "tide.config.js"(it should be found in SDP site project root "/tide/tide.config.js"), add module as below example.
const tideConfig = {
nodeModules: [
'@dpc-sdp/myvic-data-driven-component'
]
}
To add custom components, set customComponents
to true
.
const tideConfig = {
nodeModules: [
['@dpc-sdp/myvic-data-driven-component', { customComponents: true }]
]
}
Then add a file "/tide/data-driven-component-loader.js" to map and load your custom components, as below example.
const loadComponent = (configs) => {
let dataDrivenComp
switch (configs.name) {
case 'my_chart':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'my-chart' */ '~/components/MyChart').then(m => m.MyChart)
}
break
case 'myvic_barchart_demo_1':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'myvic-bar-chart' */ '@dpc-sdp/myvic-bar-chart'),
props: {
title: 'test bar chart',
data: {
labels: ['January', 'February', 'March', 'April', 'May', 'June'],
datasets: [
{
label: 'Dataset 1',
data: [40, 20, 12, 52, 10, 39]
}
]
}
}
}
break
}
return dataDrivenComp
}
export default loadComponent
For components like map, we are not going to support IE browsers. To disable IE support, set ieSupport
to false
in the configuration.
case 'my_map':
dataDrivenComp = {
name: () => import(/* webackChunkName: 'my-map' */ '~/components/MyMap').then(m => m.MyMap),
ieSupport: false
}
break
The map will not be rendered. A alert will be displayed to the user.
FAQs
**This is a "@dpc-sdp/ripple-nuxt-tide" submodule, for Single Digital Presence projects use only.**
The npm package @dpc-sdp/myvic-data-driven-component receives a total of 0 weekly downloads. As such, @dpc-sdp/myvic-data-driven-component popularity was classified as not popular.
We found that @dpc-sdp/myvic-data-driven-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.