Code Monkey home page Code Monkey logo

jsxbin-to-jsx-converter's Introduction

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.

jsxbin-to-jsx-converter's People

Watchers

gittmaan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.