csgcmai / jsxbin-to-jsx-converter

JSXBin to JSX Converter written in C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction to JSXBIN to JSX Converter

JSXBIN is a binary format of JSX, which is a superset of JavaScript made by Adobe for automating certain tasks in Adobe products such as Photoshop. Sometimes it's useful to decode and read JSXBIN files but since there's no official decoder available, here is an alternative instead.

Usage

  1. Download the latest version from the releases page
  2. Extract the converter
  3. Run jsxbin_to_jsx on your command line using the following syntax:
jsxbin_to_jsx [-v] JSXBIN JSX
Flags:
-v print tree structure to stdout

Example:

jsxbin_to_jsx encoded.jsxbin decoded.jsx

The converter automatically formats the code using JsBeautifier.

Debugging

To view the parse tree created by the decoder use the -v flag:

jsxbin_to_jsx -v encoded.jsxbin decoded.jsx > debug.txt

Decoding the following code:

var test = 5;
if (test > 5) {
        doSomething();
}

translates into the following parse tree:

StatementList
    ExprNode
        AssignmentExpr
    IfStatement
        StatementList
            ExprNode
                FunctionCallExpr
                    IdNode
        BinaryExpr
            IdRefExpr

Tests

The Tests-Project contains one single test. This test decodes all jsxbin-Files found in the testfiles folder comparing them with their jsx-File equivalent, also found in the same folder.

Feedback

If you encounter any problems or have any feedback, please open an issue.

About

JSXBin to JSX Converter written in C#

License:MIT License


Languages

Language:C# 90.6%Language:JavaScript 9.4%