Browse Source

master
Muthu Kumar 7 years ago
parent
commit
a99804e089
  1. 2
      README.md
  2. 2
      client.js
  3. 2
      package-lock.json
  4. 4
      views/dashboard.html
  5. 4
      views/index.html

2
README.md

@ -1,6 +1,6 @@
# ⚡️ Minal # ⚡️ Minal
A very minimal analytics solution for websites. Blazing fast, minimal analytics solution for websites.
#### In active development. #### In active development.

2
client.js

@ -16,7 +16,7 @@
}; };
})(window.history); })(window.history);
var socket = io('https://breeze.thefeathers.in'); var socket = io('<your-server-address>');
var visitorData = { var visitorData = {
referringSite: document.referrer, referringSite: document.referrer,
domain: window.parent.location.hostname, domain: window.parent.location.hostname,

2
package-lock.json

@ -1,5 +1,5 @@
{ {
"name": "breeze-analytics", "name": "minal",
"version": "0.0.1", "version": "0.0.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,

4
views/dashboard.html

@ -5,7 +5,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Breeze Analytics Dashboard</title> <title>Minal Analytics Dashboard</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/dashboard.css"> <link rel="stylesheet" href="css/dashboard.css">
@ -15,7 +15,7 @@
<nav class="navbar navbar-inverse navbar-fixed-top"> <nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container"> <div class="container">
<div class="navbar-header"> <div class="navbar-header">
<a class="navbar-brand" href="/">Breeze Analytics</a> <a class="navbar-brand" href="/">Minal Analytics</a>
</div> </div>
</div> </div>
</nav> </nav>

4
views/index.html

@ -1,2 +1,2 @@
<h1>Breeze Analytics Server</h1> <h1>Minal Analytics Server</h1>
<a href='https://github.com/codefeathers/breeze-analytics'>Github</a> <a href='https://github.com/codefeathers/minal'>Github</a>
Loading…
Cancel
Save