├── README.md ├── index.js └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # bot-framework 2 | A free open source modular botting framework 3 | 4 | ## Goal 5 | The goal of this project is not to provide a fully working bot but to provide a framework for people to create their own site modules. 6 | This project will give you the tools to do so through an easy to use API that solves many of the common patterns when automating actions on a site. 7 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world!"); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bot-framework", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC" 12 | } 13 | --------------------------------------------------------------------------------