Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
react-world-countries-map
Advanced tools
A pure react component to visualize world maps with highlighted countries. Simple. Free. No Registration, No access token, No back-end service.
A pure react component to visualize world maps with highlighted countries. Simple. Free. No Registration, No access token, No back-end service.
const data =
[
{ "country": "cn", value: 1389618778 }, // china
{ "country": "in", value: 1311559204 }, // india
]
<ReactWorldCountriesMap color="red" title="This is My Map" size="lg" data={data} />
Focus on simple and free.
It all started with a fun project that I was building and needed to draw simple yet beautiful world's map. Searching for solutions I found many potential solutions like MapBox and Google Maps, but they were "too smart" for what I needed. They needed to "call home" for the data, they supported tons of options I didn't need, and while they included react-integrations, they were not completely native to the react world. There was definitely something missing. And that's when react-world-countries-map started.
$ npm install react-world-countries-map --save
Explore the example folder for an end-to-end react app using the react-world-countries-map.
Here is a simple example:
import React from "react"
import "./App.css"
import ReactWorldCountriesMap from "react-world-countries-map"
function App() {
const data =
[
{ "country": "cn", value: 1389618778 }, // china
{ "country": "in", value: 1311559204 }, // india
{ "country": "us", value: 331883986 }, // united states
{ "country": "id", value: 264935824 }, // indonesia
{ "country": "pk", value: 210797836 }, // pakistan
{ "country": "br", value: 210301591 }, // brazil
{ "country": "ng", value: 208679114 }, // nigeria
{ "country": "bd", value: 161062905 }, // bangladesh
{ "country": "ru", value: 141944641 }, // russia
{ "country": "mx", value: 127318112 } // mexico
]
return (
< div className="App" >
<ReactWorldCountriesMap color="red" title="Top 10 Populous Countries" value-suffix="people" size="lg" data={data} />
</div>
)
}
The only mandatory prop. Data contains an array of country/value records, where country is a 2 chars (ISO alpha-2) and value is a number.
Example of valid data prop:
const data =
[
{ "country": "cn", value: 1 }, // china
{ "country": "in", value: 2 }, // india
{ "country": "us", value: 3 } // united states
]
Prop | Type | Description |
---|---|---|
size | string | One of "sm", md", "lg" |
title | string | Any string |
color | string | Color to highlight countries. A standard color string. E.g. "red" or "#ff0000" |
tooltipBgColor | string | Tooltip background color |
tooltipTextColor | string | Tooltip text color |
value-prefix | string | A string to prefix values in tooltips. E.g. "$" |
value-suffix | string | A string to suffix values in tooltips. E.g. "USD" |
MIT
FAQs
A pure react component to draw a map of world countries. Simple. Free.
The npm package react-world-countries-map receives a total of 5 weekly downloads. As such, react-world-countries-map popularity was classified as not popular.
We found that react-world-countries-map demonstrated a not healthy version release cadence and project activity because the last version was released 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
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.