
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
@medplum/fhirtypes
Advanced tools
This library contains TypeScript type definitions for all R4 types.
Add as a dependency:
npm install --save-dev @medplum/fhirtypes
Consider the following untyped code:
const myPatient = {
resourceType: 'Patient',
name: 'George Washington',
};
Keen observers will note that Patient.name should not be a string. Instead, it should be an array of HumanName objects.
Let's add the type definition and see what happens:
import { Patient } from '@medplum/fhirtypes';
const myPatient: Patient = {
resourceType: 'Patient',
name: 'George Washington',
};
Now "name" is a compile error. Developer tools with TypeScript support should provide feedback. For example, VS Code adds red squigglies and a helpful error message:

And now you will receive typeahead support:

So we can build a well-formed example:
import { Patient } from '@medplum/fhirtypes';
const myPatient: Patient = {
resourceType: 'Patient',
name: [
{
given: ['George'],
family: 'Washington',
},
],
};
Medplum is a healthcare platform that helps you quickly develop high-quality compliant applications. Medplum includes a FHIR server, React component library, and developer app.
Apache 2.0. Copyright © Medplum 2025
FAQs
Medplum FHIR Type Definitions
The npm package @medplum/fhirtypes receives a total of 55,592 weekly downloads. As such, @medplum/fhirtypes popularity was classified as popular.
We found that @medplum/fhirtypes demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.