noma/js

dev-main 2025-03-17 08:44 UTC

This package is auto-updated.

Last update: 2025-03-17 08:44:52 UTC


README

A PHP to JS transpiler.

Installation

composer require noma/js

Usage

There's lots to write, but the most basic usage looks like this:

use Noma\Js\Js;

$js = Js::fromString('<?php echo "Hello, World";');

// $js becomes => console.log("Hello, World");

You can also use Js::fromFile. For more info please refer to the examples for now.