A minimal, yet powerful geoblocking library for websites. Easily implement country-based access restrictions with predefined presets for different regulatory contexts.
- 🌎 Multiple geolocation services with fallbacks
- 🛡️ Preset country lists for common regulatory scenarios (sanctions, regional restrictions)
- 🔧 Flexible configuration options
- 💪 No dependencies
- 📱 Works in all modern browsers
- 🎨 Customizable blocking UI
- ⚡ Lightweight (~5KB minified and gzipped)
npm install github:trifle-labs/GeoBlock
yarn add github:trifle-labs/GeoBlock
<script src="https://unpkg.com/github:trifle-labs/GeoBlock/dist/geoblock.min.js"></script>
To use GeoBlock with Vite:
# Install the package
npm install github:trifle-labs/GeoBlock
Then import and use it in your code:
// ESM import for Vite
import GeoBlock from 'geoblock';
// Create an instance and check access
const geoblock = new GeoBlock({
activePresets: ['sanctions'],
});
// Check and apply blocking if needed
geoblock.checkAndBlock().then((hasAccess) => {
if (hasAccess) {
// Initialize your app
}
});
If you encounter any issues with Vite resolving the package, make sure you're using the latest version of the library and that your Vite configuration is properly set up to resolve node modules.
// Import the library
import GeoBlock from 'geoblock';
// Create a new instance with default options
const geoblock = new GeoBlock({
activePresets: ['sanctions'], // Use the sanctions preset
additionalCountries: ['BR', 'AR'], // Add more countries
exemptCountries: ['CA'], // Exempt specific countries
});
// Check if the user should be blocked and apply visual blocking if needed
geoblock.checkAndBlock().then((hasAccess) => {
if (hasAccess) {
console.log('User has access');
// Initialize your app here
} else {
console.log('User is blocked');
}
});
The library includes the following built-in presets:
sanctions
: Countries under international sanctionsskillprize
: Countries with strict skill-based prize regulationsgambling
: Countries with strict gambling regulationslottery
: Countries with strict lottery regulationsraffle
: Countries with raffle restrictions
const geoblock = new GeoBlock({
// Presets
presets: {
// Override or add custom presets
custom: ['FR', 'DE', 'IT'],
},
// Custom descriptions for presets (shown in blocking message)
presetDescriptions: {
sanctions: 'International sanctions compliance',
custom: 'European regulatory restrictions',
// Override any preset description
},
// Which presets to apply (can use multiple)
activePresets: ['sanctions', 'custom'],
// Additional individual countries to block (2-letter country codes)
additionalCountries: ['BR', 'AR'],
// Countries to exempt from blocking
exemptCountries: ['CA'],
// Blocking message (supports {country} and {countryCode} placeholders)
blockMessage: "We're sorry, access to this site is restricted in {country}.",
// Legal entity for liability disclaimer (optional)
legalEntity: 'Company Name Ltd', // If provided, adds liability disclaimer with this entity name
// Visual blocking settings
visualBlocking: true,
blockingClass: 'geo-blocked',
overlayClass: 'geo-overlay',
messageClass: 'geo-message',
// Dismissal options
allowDismiss: true, // Whether to show the X button to dismiss the notice
dismissOnOverlayClick: true, // Whether clicking the background dismisses the notice
// Custom styles for visual elements
customStyles: {
overlay: {
backgroundColor: 'rgba(50, 50, 50, 0.9)',
backdropFilter: 'blur(5px)',
},
message: {
backgroundColor: '#222',
color: 'white',
borderRadius: '20px',
},
closeButton: {
color: '#fff',
fontSize: '28px',
},
},
// Testing settings
testMode: false,
testCountry: null, // Set to a country code to simulate that location
});
const geoblock = new GeoBlock(options);
async getCountryInfo()
: Gets information about the user's countryasync checkAccess()
: Checks if the user should be blockedasync checkAndBlock()
: Checks access and applies visual blocking if neededapplyVisualBlocking(countryData)
: Manually applies visual blockingremoveVisualBlocking()
: Removes visual blocking elementsgetBlockedCountries()
: Gets the complete list of blocked countriesgetPreset(presetName)
: Gets the country list for a specific preset
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Opera (latest)
- Mobile browsers (iOS Safari, Android Chrome)
- Clone the repository
- Install dependencies:
npm install
- Run tests:
npm test
- Build:
npm run build
- Run example:
npm run serve
(opens the example in your browser)
MIT