All Projects → bachors → Visitor-Parser-JS

bachors / Visitor-Parser-JS

Licence: MIT License
Visitor Parser JS

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Visitor-Parser-JS

Setup
My own front end web development set up, covering everything from operating system to analytics.
Stars: ✭ 93 (+365%)
Mutual labels:  analytics, seo
Google Searchconsole
A wrapper for the Google Search Console API.
Stars: ✭ 83 (+315%)
Mutual labels:  analytics, seo
Awesome Ecommerce Stack
💰 Popular marketing tools and add-ons used by 10,000+ of the top e-commerce stores.
Stars: ✭ 255 (+1175%)
Mutual labels:  analytics, seo
svelte-google-analytics
Google Analytics component for Svelte
Stars: ✭ 41 (+105%)
Mutual labels:  analytics, seo
yii2-queuemanager
Yii2 Queue Manager (Analytic & Monitor)
Stars: ✭ 18 (-10%)
Mutual labels:  analytics
wp-analytify
Google Analytics Dashboard Plugin For WordPress By Analytify
Stars: ✭ 20 (+0%)
Mutual labels:  analytics
Postfix-Deliverability-Analytics
[DEPRECATED] A tool that goes throu Posftix logs and builds a statistics of bounces (non-delivered messages). Statistics are provided by REST API to the client.
Stars: ✭ 21 (+5%)
Mutual labels:  analytics
clevertap-ios-sdk
CleverTap iOS SDK
Stars: ✭ 39 (+95%)
Mutual labels:  analytics
Server
Server written in PHP, provides a Javascript API for in the browser
Stars: ✭ 34 (+70%)
Mutual labels:  user-agent
PhotosApp
React Native Photos App: AWS Amplify, AWS S3, Mobile Analytics with Pinpoint
Stars: ✭ 21 (+5%)
Mutual labels:  analytics
morganfreeman
A simple analytics for icecast servers
Stars: ✭ 14 (-30%)
Mutual labels:  analytics
dashboard-extension-parameter-item
⛔ DEPRECATED. This project was moved to a new repository. Visit https://github.com/DevExpress/dashboard-extensions to find an updated version.
Stars: ✭ 47 (+135%)
Mutual labels:  analytics
country
IP to country
Stars: ✭ 32 (+60%)
Mutual labels:  geolocation
elbo
Source code for elbo.in, an URL shortening service
Stars: ✭ 23 (+15%)
Mutual labels:  analytics
seoinspector
Ein SEO Ranking Tool fürs REDAXO Backend
Stars: ✭ 22 (+10%)
Mutual labels:  seo
ionic3-google-maps-examples
Some examples of how to use google maps javascript API on a Ionic application and use HTML5 geolocation.
Stars: ✭ 24 (+20%)
Mutual labels:  geolocation
track.js
🔍 Identify users and track interactions with Hanzo's native solution for web analytics.
Stars: ✭ 21 (+5%)
Mutual labels:  analytics
whoami.js
A simple and lightweight browser detection and logger library
Stars: ✭ 16 (-20%)
Mutual labels:  user-agent
SearchScraperAPI
Aiohttp web server API, which scrapes Google and returns scrape results as response. Supports proxies, multiple geos and number of results.
Stars: ✭ 31 (+55%)
Mutual labels:  seo
SyntheticSun
SyntheticSun is a defense-in-depth security automation and monitoring framework which utilizes threat intelligence, machine learning, managed AWS security services and, serverless technologies to continuously prevent, detect and respond to threats.
Stars: ✭ 49 (+145%)
Mutual labels:  geolocation

Lightweight javascript-based to analyze visitors with user-agent & ip geo location parser.

Usage

Default:

visitorParser(function(data) {
    console.log(data);
});

With Configuration:

var config = {
    // set user-agent string
    setUa: 'Mozilla/5.0 (Linux; U; Android 2.3.5; de-de; SAMSUNG GT-S5830/S5830BUKS2 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', 
    // get all options result of regex
    getOpt: true, 
    // set url ip geo location apis
    geoAPI: 'http://freegeoip.net/json/' 
};
visitorParser(config, function(data) {
    console.log(data);
});

Contribute

  • Fork and clone this repository
  • Make some changes as required

Hope will usefull for you all.

Question ? please email : [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].