Transformation Libraries

Reuse transformation code with transformation libraries.

RudderStack’s transformation libraries feature lets you reuse the same code in multiple transformations.

success
RudderStack now supports writing transformation libraries in Python for the RudderStack Cloud Growth and Enterprise plans.

Adding a library

  1. In the RudderStack dashboard, go to Enhance > Transformations and click the Libraries tab.
Adding a library
  1. Click Create library.
  2. Add the library Name, Description and select the Language to write the library function. You can also add multiple functions in a single library.
Adding a library
  1. 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:

Using libraries in transformations
info
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:

The following snippets demonstrate how you can import this function in a transformation:

On clicking Run Test, a sample event not containing the RudderStack email domain is filtered out:

Filtering out events using libraries in transformation

Importing multiple functions from a single library

The following snippets highlight how to correctly import functions from a library:

The following snippets highlight the incorrect way of importing the library functions:

Deleting a library

warning
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.

warning
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.

User agent parser

The Parse user agent transformation template imports this library to add the user’s browser, engine, OS, device, and CPU-related information to the events.

Hashing PII

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.


Questions? Contact us by email or on Slack