Skip to content

Instantly share code, notes, and snippets.

@kharmabum
Last active January 11, 2017 21:31
Show Gist options
  • Save kharmabum/47d1f215239cc956c25a70d2791735f2 to your computer and use it in GitHub Desktop.
Save kharmabum/47d1f215239cc956c25a70d2791735f2 to your computer and use it in GitHub Desktop.
const commandRegExp = new RegExp('^([\\w]+)(\\s|$)')
const {fetch, Feature} = require('other')
const feature = new Feature({
name: 'juanxa-sounds',
version: '0.0.0-beta.af',
dependencies: {
otherjs: '^3.2.x',
},
identity: 'c74d1011e4d14269b0c09510f3922976'
})
feature.listen({
to: 'message',
on(message, channel) {
const text = message.text
const options = {
method: 'POST',
body: `{"value1":"` + text + `"}`
}
fetch("https://maker.ifttt.com/trigger/oc_playlist/with/key/bfHiq3MurvmHTv3dNVkZS2", options)
},
})
module.exports = feature
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment