Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.