https://github.com/oleg-darkdev/kudos_bot
Telegram bot for sending positive feedback in kudo cards.
https://github.com/oleg-darkdev/kudos_bot
feedback javascript kudos management nodejs postcards telegraf telegram-api telegram-bot
Last synced: 3 months ago
JSON representation
Telegram bot for sending positive feedback in kudo cards.
- Host: GitHub
- URL: https://github.com/oleg-darkdev/kudos_bot
- Owner: oleg-darkdev
- Created: 2019-10-16T21:35:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-05T17:27:13.000Z (over 5 years ago)
- Last Synced: 2025-01-27T10:12:02.617Z (over 1 year ago)
- Topics: feedback, javascript, kudos, management, nodejs, postcards, telegraf, telegram-api, telegram-bot
- Language: JavaScript
- Homepage:
- Size: 21.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##Running the Code
This is the code accompanying the following article: [Transpiling ES6 Modules to AMD & CommonJS Using Babel & Gulp](http://www.sitepoint.com/transpiling-es6-modules-to-amd-commonjs-using-babel-gulp/)
Before running the sample, make sure you have Node.js installed and that the Gulp package is installed globally on your system.
After cloning the sample, open a command prompt and run the following commands to install the dependencies:
- npm install (to install node.js dependencies)
- bower install (to install front-end packages)
The sample is an Angular application written in ES6. It uses Babel to transpile the code to ES5. It converts the modules into either AMD or, CommonJS depending on the Gulp task you choose to run.
- gulp amd (Converts the code to ES5 with AMD style modules and starts Node.js server)
- gulp commonjs (Converts the code to ES5 with CommonJS style modules and starts Node.js server)
After running one of the above commands, you will have to uncomment/comment a section in the `index.html file`. I have put comments in that file to make it easy to identify the sections. Once you made the change, open a browser and navigate to http://localhost:8000