Comparing version 0.0.7 to 0.1.0
@@ -31,3 +31,3 @@ var querystring = require('querystring'); | ||
res.on('data', function (chunk) { | ||
console.log("body: " + chunk); | ||
// console.log("body: " + chunk); | ||
}); | ||
@@ -69,3 +69,3 @@ }); | ||
res.on('data', function (chunk) { | ||
console.log("body: " + chunk); | ||
// console.log("body: " + chunk); | ||
}); | ||
@@ -72,0 +72,0 @@ }); |
{ | ||
"name": "botstats", | ||
"version": "0.0.7", | ||
"version": "0.1.0", | ||
"description": "Middleware for botframework", | ||
@@ -5,0 +5,0 @@ "main": "botstats.js", |
@@ -7,10 +7,12 @@ # botstats | ||
const token = process.env.BOTSATS_TOKEN || "really-long-token" | ||
var token = process.env.BOTSATS_TOKEN || "really-long-token" | ||
const botstats = require('botstats')(token) | ||
var botstats = require('botstats')(token) | ||
// assuming your bot is initialized like this | ||
var bot = new builder.UniversalBot(connector) | ||
// tell bot to use botstats | ||
bot.use(botstats) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3935
17