No description
Find a file
2024-06-13 20:23:15 +02:00
.vscode wow, been a long time since i commited to github :) 2024-05-28 22:33:51 +02:00
dsl_files small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
grammars Changed from * to + 2024-05-28 22:33:51 +02:00
JSTQL Fixed node comparison bug 2024-06-02 00:19:44 +02:00
src small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
test_files small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
.gitignore Fixed node comparison bug 2024-06-02 00:19:44 +02:00
.gitmodules fixed babel submodule setup 2024-05-28 22:33:51 +02:00
.prettierrc starto 2023-09-13 14:45:06 +02:00
bun.lockb small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
index.ts small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
LICENSE Initial commit 2023-09-08 13:16:42 +02:00
out.js small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
package-lock.json small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
package.json small bugfixes and cleanup 2024-06-13 20:23:15 +02:00
README.md Finished cleanup 2024-05-31 16:26:18 +02:00
tsconfig.json small bugfixes and cleanup 2024-06-13 20:23:15 +02:00

JSTQL JavaScript Transform tool

This tool is created to transform JavaScript based on definitions written in a custom DSL called JSTQL

JSTQL

This is a DSL created to define proposal transformations using templates. A transformation is defined by two templates, a template of what code snippets to search for applicable to and a template of how to transform those snippets transform to.

Examples of definitions for proposals can be found in dsl_files

Running this project

This project exposes an api in the file transform/transfrom.ts, which is meant to be used as this library's entry point.

To run this code as a standalone project, a file index.ts exists to facilitate running this project.

This project is created using TypeScript, and it is recommended to use Bun to compile and run it.

Building Langium required files

Firstly, building langium is required, this is done by the following:

# cd into JSTQL
cd JSTQL

# Install dependencies
npm i

# Build langium generated files
npm run langium:generate

# Build final JS source
npm run build

Running a transformation

Now we are ready to run this project with the pipeline on a test JS file:

# cd into top level
cd ..

# Install dependencies
bun i

# Run an example transformation
bun run index.ts dsl_files/pipeline.jstql test_files/test.js

Arguments of index.ts

Arguments

  • First positional is path to JSTQL
  • Second positional is path to JS file to transform
  • -o is optional output path, if not given path is ./out.js