https://github.com/is2ei/gulp-typetalk
Gulp plugin to send notifications to Typetalk
https://github.com/is2ei/gulp-typetalk
gulpplugin typetalk
Last synced: 7 months ago
JSON representation
Gulp plugin to send notifications to Typetalk
- Host: GitHub
- URL: https://github.com/is2ei/gulp-typetalk
- Owner: is2ei
- License: mit
- Created: 2019-03-04T14:20:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-09T12:23:22.000Z (over 6 years ago)
- Last Synced: 2025-01-12T05:28:49.529Z (9 months ago)
- Topics: gulpplugin, typetalk
- Language: JavaScript
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gulp-typetalk
===Gulp plugin to send notifications to Typetalk
[][travis]
[][npm][travis]: https://travis-ci.com/is2ei/gulp-typetalk
[npm]: https://badge.fury.io/js/gulp-typetalk## Install
```
$ npm i --save-dev gulp-typetalk
```## Usage
```javascript
const typetalk = require("gulp-typetalk");
const config = require("./config");function typetalkExample (cb) {
typetalk({
token: config.token,
topicId: config.topicId,
message: "Hello, World!"
});
cb();
}exports.default = typetalkExample;
```
For working example, see [this repository](https://github.com/is2ei/gulp-typetalk-example)