
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
@smals-belgium/myhealth-wc-integration
Advanced tools
MyHealth web component inputs/outputs types definition
This module defines the types used to describe the inputs and outputs exposed by the MyHealth Web Components.
It also provides a web component documentation template (markdown) at: README-component.template.md.
This library is published to the NPM registry at: https://www.npmjs.com/package/@smals-belgium/myhealth-wc-integration
See Guidelines
Note that the types used in this library are also thoroughly documented, so if you prefer to dig in through the code, that's also an option.
In that case your best starting point is MyHealthModule.
Everything else builds up from there.
Example of one web component module with multiple components that work together.
It uses the pre-fetch to load data before any component
is displayed, and stores the data in the "cache service" provided by the host application.
import {
MyHealthModuleBootstrap,
family,
MyHealthModuleManifest,
openEventType
} from '@smals-belgium/myhealth-wc-integration';
import { hostServices } from './host';
import { getEmployees } from './employee.api';
import { EmployeeList } from './view/employee-list';
import { EmployeeDetail } from './view/employee-detail';
const tag = {
list: 'wc-employee-list',
detail: 'wc-employee-detail'
};
export const manifest: MyHealthModuleManifest = {
specVersion: { major: 5, minor: 0, patch: 0 },
family: family('wc-employees'),
components: [{
tagName: tag.list,
events: [openEventType, refreshEventType],
}, {
tagName: tag.detail,
requiredInputs: ['userId'],
events: [refreshEventType],
}]
};
export const bootstrap: MyHealthModuleBootstrap = ({ services }) => {
Object.assign(hostServices, services);
customElements.define(tag.list, EmployeeList);
customElements.define(tag.detail, EmployeeDetail);
return () => getEmployees()
.then(employees => hostServices.cacheDataStorage.set('employees', employees));
}
FAQs
MyHealth web component inputs/outputs types definition
The npm package @smals-belgium/myhealth-wc-integration receives a total of 67 weekly downloads. As such, @smals-belgium/myhealth-wc-integration popularity was classified as not popular.
We found that @smals-belgium/myhealth-wc-integration 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
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.