Intelligo is a JavaScript Framework to build Facebook Messenger's Chat bots.
npm install intelligo --save
'use strict';
const express = require('express'),
Intelligo = require('intelligo');
const app = express();
const bot = new Intelligo({
PAGE_ACCESS_TOKEN: 'PAGE_ACCESS_TOKEN',
VALIDATION_TOKEN: 'VALIDATION_TOKEN',
APP_SECRET: 'APP_SECRET',
app: app
});
app.set('port', process.env.PORT || 5000);
app.listen(app.get('port'), function() {
console.log('Server is running on port', app.get('port'));
});
You may contribute in several ways like creating new features, fixing bugs, improving documentation and examples or translating any document here to your language. Find more information in CONTRIBUTING.md. Contributors
MIT.