Reuse transformation code with transformation libraries.
RudderStack’s transformation libraries feature lets you reuse the same code in multiple transformations.
RudderStack now supports writing transformation libraries in Python for the RudderStack Cloud Growth and Enterprise plans.
Adding a library
In the RudderStack dashboard, go to Enhance > Transformations and click the Libraries tab.
Click Create library.
Add the library Name, Description and select the Language to write the library function. You can also add multiple functions in a single library.
Click Run Test to ensure the library code has the correct syntax.
Using libraries
To use the libraries in your existing transformations, note the Import Library Name option in the RudderStack dashboard:
RudderStack converts the library name into camel case without spaces; this becomes your library handle which you can use across multiple transformations. For example, if your library name is Sample Transformation Library, then the library handle would be sampleTransformationLibrary.
You can then use the library in a transformation with a simple import statement. Refer to the below use case for more information.
Use case
Suppose you want to filter the events that don’t contain an email address with the RudderStack domain. To do so, you can import a rudderEmail function from the transformation library isRudderEmail.
The rudderEmail function containing the filtering logic is shown below:
You cannot delete a library that is referenced or imported in a transformation.
To delete a library, go to Enhance > Transformations > Libraries and click the Delete button next to the library that you want to delete.
RudderStack libraries
By default, RudderStack provides three predefined libraries which you can directly import into your transformations. Refer to the GitHub codebase for the code and implementation-specific details for these libraries.
Currently, RudderStack libraries are available only for JavaScript. Python support (applicable for Growth/Enterprise customers) is coming soon.
Use the following structure to import the Rudderstack libraries:
@rs/<libraryname>/v1
A sample import statement is shown below:
import{JSEncrypt}from"@rs/encrypt/v1";
Encrypt/Decrypt PII
This library lets you encrypt and decrypt PII, including those stored in cookies.
This library has three hash functions that hide sensitive PII like the user’s email, birthday, social security number, etc. You can use either MD5, SHA256, or cyrb53 to hash your PII.
This site uses cookies to improve your experience while you navigate through the website. Out of
these
cookies, the cookies that are categorized as necessary are stored on your browser as they are as
essential
for the working of basic functionalities of the website. We also use third-party cookies that
help
us
analyze and understand how you use this website. These cookies will be stored in your browser
only
with
your
consent. You also have the option to opt-out of these cookies. But opting out of some of these
cookies
may
have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This
category only includes cookies that ensures basic functionalities and security
features of the website. These cookies do not store any personal information.
This site uses cookies to improve your experience. If you want to
learn more about cookies and why we use them, visit our cookie
policy. We'll assume you're ok with this, but you can opt-out if you wish Cookie Settings.