UNPKG

node-red-contrib-mailchimp

Version:

NodeRED node integration to MailChimp Service

11 lines (10 loc) 307 B
module.exports = function(RED) { function RemoteServerNode(n) { RED.nodes.createNode(this,n); this.apiKey = this.credentials.apiKey; this.name = n.name; } RED.nodes.registerType("mailchimp-config",RemoteServerNode,{credentials: { apiKey: {type:"text"} }}); }