This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var request = require('request'); | |
var bodyParser = require('body-parser'); | |
var watson = require('watson-developer-cloud'); | |
var app = express(); | |
var contexid = ""; | |
app.use(bodyParser.urlencoded({ extended: false })) | |
app.use(bodyParser.json()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"body-parser": "1.15.0", | |
"request": "2.72.0", | |
"htmlparser": "1.7.7", | |
"watson-developer-cloud": "2.0.1" | |
//note: add in dependencies |