For the complete documentation index, see llms.txt. This page is also available as Markdown.

File Transformer

Allows you to write a custom implementation of some features in Datasaur.

File transformer feature can be found in Team workspace. You can hover over to the left sidebar and click File Transformer.

Click Create file transformer to start writing your script. Enter a name, then choose the type of file transformer:

  • Select Import to create a script for importing files into a project.

  • Select Export to create a script for exporting files from a project.

Import external dependencies

In some cases, you may need to import libraries to help you write custom script. You can import external libraries hosted in the NPM public registry by adding an import statement:

Notes

  • Auto-complete doesn't work on external libraries.

  • The latest version of the library is installed by default, which may introduce incompatibilities if the update has breaking changes.

Last updated