
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
aws-instance-info
Advanced tools
Retrieve meta-info for AWS EC2, RDS, and ElastiCache such as size, memory, and more
Get detailed specifications for AWS EC2 instances, RDS instance classes, and ElastiCache node types.
npm install aws-instance-info
Full API documentation can be found at awsinstanceinfo.brandonburrus.com.
Get details for a specific EC2 instance type:
import { getEC2InstanceInfo } from 'aws-instance-info';
const m5Large = getEC2InstanceInfo('m5.large');
console.log(m5Large.memoryGiB); // 8
console.log(m5Large.vCPUs); // 2
console.log(m5Large.category); // 'general_purpose'
NOTE: By default, the API loads data from disk synchronously. If you prefer async, you can use the async API from aws-instance-info/async.
import { getEC2InstanceInfo } from 'aws-instance-info/async';
const m5Large = await getEC2InstanceInfo('m5.large');
console.log(m5Large.memoryGiB); // 8
console.log(m5Large.vCPUs); // 2
console.log(m5Large.category); // 'general_purpose'
Get details for an entire EC2 instance family:
import { getEC2Family } from 'aws-instance-info';
const m5Family = getEC2Family('M5');
console.log(m5Family.instanceTypes); // ['m5.large', 'm5.xlarge', ...]
console.log(m5Family.hypervisor); // 'Nitro v2'
Get details for a specific RDS instance class:
import { getRDSInstanceInfo } from 'aws-instance-info';
const dbM5Large = getRDSInstanceInfo('db.m5.large');
console.log(dbM5Large.memoryGiB); // 8
console.log(dbM5Large.vCPUs); // 2
console.log(dbM5Large.category); // 'general_purpose'
Get details for a specific ElastiCache node type:
import { getElastiCacheNodeInfo } from 'aws-instance-info';
const cacheM5Large = getElastiCacheNodeInfo('cache.m5.large');
console.log(cacheM5Large.memoryGiB); // 6.38
console.log(cacheM5Large.vCPUs); // 2
console.log(cacheM5Large.category); // 'general_purpose'
Q: Where does the data come from? The data is sourced from the official AWS documentation and is updated regularly to reflect any changes made by AWS. This process is completely automated via the python scripts as part of this project.
Q: How is the data stored? The data is stored in JSON files within the package, allowing for quick and efficient access. These loaded and cached on-demand in memory.
FAQs
Retrieve meta-info for AWS EC2, RDS, and ElastiCache such as size, memory, and more
The npm package aws-instance-info receives a total of 6 weekly downloads. As such, aws-instance-info popularity was classified as not popular.
We found that aws-instance-info 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.