PHP code example of talyssonoc / php-babel-transpiler

1. Go to this page and download the library: Download talyssonoc/php-babel-transpiler library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

talyssonoc / php-babel-transpiler example snippets


  $transpiledCode = Babel\Transpiler::transform('class MyClass {  }');
  $otherTranspiledCode = Babel\Transpiler::transformFile('/my/Class.js', [ 'blacklist' => [ 'useStrict' ] ]);
sh
  php composer.phar