Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
emergency-numbers
Advanced tools
This library provides a convenient way to retrieve emergency contact numbers for different countries. It includes default emergency numbers as well as the ability to retrieve country-specific emergency numbers.
You can install this library using your preferred package manager:
Package Manager | Command |
---|---|
npm | npm install emergency-numbers |
Yarn | yarn add emergency-numbers |
pnpm | pnpm add emergency-numbers |
Choose the appropriate command based on the package manager you have installed in your project. Make sure to run the command in the root directory of your project.
import {
getEmergencyNumberByCountry,
getEmergencyNumberByCountryAndType,
getSupportedCountries
} from 'emergency-numbers';
import { NumberType } from 'emergency-numbers/constants';
To retrieve the emergency numbers for a specific country, use the getEmergencyNumberByCountry
function:
const countryCode = 'US'; // ISO Alpha-2
const emergencyNumbers = getEmergencyNumberByCountry(countryCode);
console.log(emergencyNumbers);
// Output: { fire: 911, police: 911, ambulance: 911 }
To retrieve a specific type of emergency number for a country, use the getEmergencyNumberByCountryAndType
function:
const countryCode = 'GB';
const numberType = NumberType.POLICE;
const emergencyNumber = getEmergencyNumberByCountryAndType(countryCode, numberType);
console.log(emergencyNumber);
// Output: 999
To get a list of supported countries for which emergency numbers are available, use the getSupportedCountries
function:
const countries = getSupportedCountries();
console.log(countries);
// Output: ['US', 'GB', ...]
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
This library is released under the MIT License.
FAQs
International emergency numbers
We found that emergency-numbers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.