npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@omprakashkumar/country-state-currencies

v1.0.5

Published

A package providing detailed country information including flags, states, districts, currencies, and languages

Downloads

9

Readme

Country Data Package

A comprehensive npm package that provides detailed information about countries, including country names, flags, states, currencies, and languages.

Table of Contents

Installation Usage Data Structure Methods Examples Contributing License

Installation

To install this package, run the following command: npm i @omprakashkumar/country-data-package

Data Structure

This package includes the following data structures:

Countries: A list of countries with their names and codes. States: A list of states/provinces for each country. Currencies:A list of currencies for each country. Languages:A list of official languages spoken in each country. Flags: The flag of each country represented as flag.

Methods

getCountries() Returns a list of all countries.

const countries = countryData.getCountries();

getStatesByCountry(countryCode) Returns a list of states/provinces for a given country code. const states = countryData.getStatesByCountry('IN');

getCurrencyByCountry(countryCode) Returns the currency of a given country code. const currency = countryData.getCurrencyByCountry('IN');

getLanguagesByCountry(countryCode) Returns a list of official languages spoken in a given country code. const languages = countryData.getLanguagesByCountry('IN');

getFlagByCountry(countryCode) Returns the flag of a given country code as flag. const flag = countryData.getFlagByCountry('IN');

See the example of how you can implement this in your component.

ReactJS / TypeScript

--------------------- App.jsx --------------------- import css from './App.css' import React, { useState } from 'react'; import { getCountries, getStatesByCountry, getCurrencyByCountry, getLanguagesByCountry, getFlagByCountry, } from '@omprakashkumar/country-data-package';

function App() { const [selectedCountry, setSelectedCountry] = useState(''); const [states, setStates] = useState([]); const [flag, setFlag] = useState(''); const [currency, setCurrency] = useState(''); const [languages, setLanguages] = useState([]);

const handleCountryChange = (e) => { const country = e.target.value; setSelectedCountry(country); setStates(getStatesByCountry(country)); setFlag(getFlagByCountry(country)); setCurrency(getCurrencyByCountry(country)); setLanguages(getLanguagesByCountry(country)); };

return ( Country Selector

  <label>Select Country:</label>
  <select value={selectedCountry} onChange={handleCountryChange}>
    <option value="">--Select a Country--</option>
    {getCountries().map((country) => (
      <option key={country.code} value={country.code}>
        {country.name}
      </option>
    ))}
  </select>

  {selectedCountry && states.length > 0 && (
    <>
      <label>Select State:</label>
      <select>
        <option value="">--Select a State--</option>
        {states.map((state) => (
          <option key={state.code} value={state.code}>
            {state.name}
          </option>
        ))}
      </select>
    </>
  )}

  {flag && (
    <div>
      <h3>Country Flag:</h3>
      <img src={flag} alt={`${selectedCountry} flag`} width="100" />
    </div>
  )}

  {currency && (
    <div>
      <h3>Currency:</h3>
      <p>{currency}</p>
    </div>
  )}

  {languages.length > 0 && (
    <div>
      <h3>Languages Spoken:</h3>
      <ul>
        {languages.map((language, index) => (
          <li key={index}>{language}</li>
        ))}
      </ul>
    </div>
  )}
</div>

); }

export default App;

------------------------------ App.css ---------------------- .App { font-family: Arial, sans-serif; max-width: 500px; margin: 50px auto; padding: 20px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

h1 { text-align: center; color: #333; margin-bottom: 20px; }

label { display: block; margin-bottom: 8px; font-weight: bold; color: #555; }

select { width: 100%; padding: 8px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; background-color: #fff; font-size: 16px; color: #333; }

select:focus { border-color: #66afe9; outline: none; box-shadow: 0 0 8px rgba(102, 175, 233, 0.6); }

h3 { color: #444; margin-bottom: 10px; }

img { display: block; margin: 10px auto; border: 1px solid #ddd; border-radius: 4px; }

p { font-size: 18px; color: #666; }

ul { list-style-type: none; padding-left: 0; }

ul li { background-color: #f1f1f1; margin-bottom: 5px; padding: 8px; border-radius: 4px; font-size: 16px; color: #555; }

ul li:hover { background-color: #e9e9e9; }


Output

alt text