I am attempting to create a post-user-registration Hook that will update a user record in MailChimp. The MailChimp API requires the MD5 hash of the user email address as a resource identifier, so I need to be able to import the Node md5 package in my Hook source file. Unfortunately the md5 package is apparently unavailable in the default environment that Auth0 provides for Hooks.
Two questions:
- Is there a way for me to include additional Node packages in my Hook (similar to what Amazon Lambda allows)?
- Are there any plans to add the md5 package to the default Hooks environment?