Socket
Socket
Sign inDemoInstall

geocontext

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geocontext

Cross platform geographical context API


Version published
Maintainers
1
Created
Source

Geocontext - A cross-platform geographical context API

Build Status

Geocontext provides an API to query the geographical context (geocontext) of a user in a simple, cross-platform way. It is designed to work both in the browser as well in node.

In the browser, the W3C geolocation API is used if available. In node.js, two mechanisms are used: If running on macos, the CoreLocation services are used through the macos-location module. Otherwise, IP-based geolocation is used using iplocation.

To make life using promises simpler, a promisified version of the W3C API is also provided. The API is the same whether running in the browser, on macos, or when the IP-based geolocation fallback is used.

You can find API documentation here. Typescript definitions are included.

A quick example which prints the current geographical context:

import geolocation from "geolocation";

async function printContext() : void {
  let location = await geocontext().getCurrentPositionPromise();
  console.log(JSON.stringify(location, null , 2));
};

printContext();

Keywords

FAQs

Package last updated on 28 Feb 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc