0.0.1 • Published 7 years ago

statszee v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

StatsZee

Known Vulnerabilities Build status Dependency Status Code Climate

Self-hosted stats server based Node.JS and Sequelize made with trails.js framework

WARNING: Not suitable for production

Work in progress, things are going to change

Installation

Run inside a node project

npm install --save statszee

Add into your application entry point

const statsZee         = require("statszee");
const statsZeeInstance = new statsZee({
  web:{
    port: process.env.PORT || 3000
  },
  database:{
    stores: {
      database: {
        host: '127.0.0.1',
        port: '5432',
        database: 'stats-server',
      }
    }
  }
})

statsZeeInstance.start().then(()=>{})

License

MIT