Git Product home page Git Product logo

country-codes-flags-phone-codes's Introduction

Country Codes Flags Phone Codes 🏳


Overview

The Country Codes Flags Phone Codes npm package provides a simple and efficient way to access country codes, flags, and phone codes. With data on 246 countries, you can effortlessly retrieve information by country name, country code, or phone code. This package streamlines the process of working with country-related data in your JavaScript applications.

Features

  • Access country codes, flags, and phone codes conveniently.
  • Data on 246 available countries.
  • Search functionality to find information quickly.
  • Retrieve data by country name, country code, or phone code.

Installation

You can install the package via npm:

npm install country-codes-flags-phone-codes

Usage

For TypeScript

import {
  getCountryFlagEmojiFromCountryCode,
  getCountryNameFromCountryCode,
  getCountryCodeFromCountryName,
  getCountryFlagEmojiFromCountryName,
  getCountryNameFromCountryFlagEmoji,
  getCountryCodeFromCountryFlagEmoji
  getCountryFromCountryCode,
  getCountryFromCountryName,
  getCountryFromCountryFlagEmoji,
  getCountryFromCountryCodeOrName,
  getCountryFromCountryCodeOrFlagEmoji,
  getCountryFromCountryNameOrFlagEmoji,
  getCountryFromCountryCodeOrNameOrFlagEmoji,
  getCountryNameFromCountryCodeOrNameOrFlagEmoji,
  getCountryCodeFromCountryCodeOrNameOrFlagEmoji,
  getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji,
  getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji,
  countries, 
  CountryInterface,
 } from "country-codes-flags-phone-codes";


console.log(getCountryFlagEmojiFromCountryCode("US")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryNameFromCountryCode("US")); // United States
console.log(getCountryCodeFromCountryName("United States")); // US
console.log(getCountryFlagEmojiFromCountryName("United States")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryNameFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // United States
console.log(getCountryCodeFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // US
console.log(getCountryFromCountryCode("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryName("United States")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryCodeOrName("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ'
console.log(getCountryFromCountryCodeOrFlagEmoji("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryNameOrFlagEmoji("United States")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryCodeOrNameOrFlagEmoji("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryNameFromCountryCodeOrNameOrFlagEmoji("US")); // United States
console.log(getCountryCodeFromCountryCodeOrNameOrFlagEmoji("United States")); // US
console.log(getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji("US")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji("US")); // +1
console.log("countries", countries); // [{ name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }, ...]

For CommonJs

  const {
    getCountryFlagEmojiFromCountryCode,
    getCountryNameFromCountryCode,
    getCountryCodeFromCountryName,
    getCountryFlagEmojiFromCountryName,
    getCountryNameFromCountryFlagEmoji,
    getCountryCodeFromCountryFlagEmoji,
    getCountryFromCountryCode,
    getCountryFromCountryName,
    getCountryFromCountryFlagEmoji,
    getCountryFromCountryCodeOrName,
    getCountryFromCountryCodeOrFlagEmoji,
    getCountryFromCountryNameOrFlagEmoji,
    getCountryFromCountryCodeOrNameOrFlagEmoji,
    getCountryNameFromCountryCodeOrNameOrFlagEmoji,
    getCountryCodeFromCountryCodeOrNameOrFlagEmoji,
    getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji,
    getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji,
    countries,
    CountryInterface,
  } = require("country-codes-flags-phone-codes");
console.log(getCountryFlagEmojiFromCountryCode("US")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryNameFromCountryCode("US")); // United States
console.log(getCountryCodeFromCountryName("United States")); // US
console.log(getCountryFlagEmojiFromCountryName("United States")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryNameFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // United States
console.log(getCountryCodeFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // US
console.log(getCountryFromCountryCode("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryName("United States")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryFlagEmoji("πŸ‡ΊπŸ‡Έ")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryCodeOrName("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ'
console.log(getCountryFromCountryCodeOrFlagEmoji("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryNameOrFlagEmoji("United States")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryFromCountryCodeOrNameOrFlagEmoji("US")); // { name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }
console.log(getCountryNameFromCountryCodeOrNameOrFlagEmoji("US")); // United States
console.log(getCountryCodeFromCountryCodeOrNameOrFlagEmoji("United States")); // US
console.log(getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji("US")); // πŸ‡ΊπŸ‡Έ
console.log(getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji("US")); // +1
console.log("countries", countries); // [{ name: 'United States', code: 'US', dialCode: '+1', flag: 'πŸ‡ΊπŸ‡Έ' }, ...]

How to Contribute

Thank you for considering contributing to this project! Contributions are essential to keep the project thriving and improving. Below are steps on how you can contribute to the project:

1. Fork the Repository

  • Navigate to the repository on GitHub.
  • Click on the "Fork" button in the top-right corner of the page.
  • This will create a copy of the repository in your GitHub account.

2. Clone the Repository

  • On your GitHub account, find the forked repository.
  • Click on the "Code" button and copy the URL provided.
  • Open your terminal or command prompt.
  • Use the git clone command followed by the URL to clone the repository to your local machine.
git clone <repository_URL>

3. Make Changes

  • Navigate to the project directory on your local machine.
  • Make the necessary changes or additions to the files you want. Ensure your changes adhere to the project's contribution guidelines and formatting standards.

4. Commit Your Changes

  • After making the desired changes, save the files you have changed.
  • In your terminal or command prompt, navigate to the project directory.
  • Use the following commands to stage and commit your changes:
git add README.md # Replace README.md with the file you have changed
git commit -m "Brief description of changes"

5. Push Changes to Your Fork

  • Once committed, push your changes to your forked repository on GitHub:
git push origin main

6. Submit a Pull Request

  • Go to your forked repository on GitHub.
  • Click on the "Pull Request" button.
  • Provide a brief description of the changes you've made in the pull request.
  • Click on "Create Pull Request" to submit your changes for review.

7. Await Review and Feedback

  • Your pull request will be reviewed as soon as possible.
  • Be open to feedback and be willing to make further changes if necessary.
  • Once approved, your changes will be merged into the main project.

Thank You!

Thank you for taking the time to contribute to our project. Your efforts are greatly appreciated and help make the project better for everyone. If you have any questions or need further assistance, feel free to reach out via GitHub issues. Happy coding!

country-codes-flags-phone-codes's People

Contributors

mehmetcanfarsak avatar singhanubhavme avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

singhanubhavme

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.