const builder = require('botbuilder');
var inMemoryStorage = new builder.MemoryBotStorage();
var bot = new builder.UniversalBot(connector).set('storage', inMemoryStorage);
I used the above line of codes to integrate my code to Bot framework but it shoes error as shown below
Error:
Need to connect successfully with Bot framework Emulator as there is no response from the emulator

