autoboosh/jsxbin-to-jsx-converter autoboosh/jsxbin-to-jsx-converter


JSXBin to JSX Converter written in C#

License: MIT

Language: C#


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.

Project Statistics

Size 89.8 KB
Stars 9
Forks 5
Watchers 7
Open issues 0
Dependencies 0
Contributors 1
Tags 9
Created
Last updated
Last pushed

Top Contributors See all

Andrin Meier

Tags See all

  • 1.8 - February 25, 2016 20:21
  • 1.7 - January 14, 2016 20:38
  • 1.6 - December 11, 2015 21:27
  • 1.5 - November 19, 2015 22:09
  • 1.4 - November 14, 2015 13:19
  • 1.3 - November 13, 2015 17:37
  • 1.2 - November 10, 2015 21:01
  • 1.1 - November 09, 2015 20:05
  • 1.0 - November 08, 2015 19:04

Something wrong with this page? Make a suggestion