Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@renec-foundation/geoip
Advanced tools
A library for getting language from GeoIP in Next.js with LocalStorage fallback
This TypeScript code uses geoip-lite to detect a user's country code from their IP address and map it to a valid language code ("vi" for Vietnamese or "en" for English). It also uses local storage to remember the user's preferred language for future visits.
To use this code in your TypeScript project:
npm install geoip-lite
.getPreferredLanguage
function.getPreferredLanguage
to get the user's preferred language code.The LanguageCode
type defines the two valid language codes: "vi" for Vietnamese and "en" for English.
The DEFAULT_LANGUAGE
constant specifies the language code to use if no other language is found.
getLanguageFromStorage()
: This function gets the language from local storage, if it exists. It checks if the language code is valid and returns it, or returns null
if the language code is invalid or doesn't exist.
getLanguageFromIP(ip: string)
: This function gets the language from the user's IP address, using geoip-lite
to get the user's country code from their IP address. It maps the country code to a language code ("vi" for Vietnam or "en" for other countries). If the country code is unknown or not supported, it returns the default language.
getUserIP()
: This function gets the user's IP address from the browser, using a free API. It returns the IP address or null
if an error occurs.
setLanguageToStorage(languageCode: LanguageCode)
: This function sets the language code in local storage.
getPreferredLanguage()
: This function gets the user's preferred language, using local storage if available, or falling back to the user's IP address. It first tries to get the language from local storage. If that fails, it tries to get the language from the user's IP address and sets it in local storage for future use. If that also fails, it returns the default language.
import { getPreferredLanguage } from "./languageDetection";
async function example() {
const language = await getPreferredLanguage();
console.log(language);
}
example();
This code logs the user's preferred language to the console.
FAQs
A library for getting language from GeoIP in Next.js with LocalStorage fallback
We found that @renec-foundation/geoip 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.