-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: add JavaScript support via OXC #106
Comments
I think if it comes into ash-project org and collaborate, would be good; or even on igniter as core optional installing |
Agreed :) Still in the early stages of discovery. |
I'm happy to work on a Rustler integration if needed. |
There is some discussion in the igniter discord channel on the rustler side of things. Would be a wonderful to have more eyes and hands on it |
@jimsynz : Currently I am expanding on ideas on the best way forward to integrate js parser and ast manipulator from elixir. Here is one approach I have decided to take (unless there are unknown unknowns): I imagine writing one JS AST manipulator in elixir would be possible, but keeping it upto date would be a hassle. So, the plan is to have ast in rust. Reference that AST struct from elixir. manipulate that ast in js using This is the 4 step plan (rough direction) as suggested by @zachdaniel
|
Here is what I found about integration rust Struct and elixir
|
same pattern found here as well:
|
Here are more code references:
|
What is the general solution to #4 above? If we're going to invest a lot of time and energy into this via rustler, we need to have confidence that we can ship this to effectively any platform someone is developing on. The nice thing about pure elixir solutions is that we know they have elixir installed at a minimum 🤣 |
This seems to be the easier part. With RustlerPrecompiled library, this is breeze. Code change: https://github.com/TwistingTwists/crucible/blob/d686d940aa71c7213dd0ef2ec1b5af0da126988b/lib/native.ex#L6-L11 So, this is already done!! See assets which are precompiled binaries: https://github.com/TwistingTwists/crucible/actions/runs/11458278738 |
haven't added support for windows yet. or musl binaries. But this can be done. This is just the barebones apple and linux_x86 support for precompiled binaries. |
Windows support will be a hard requirement FWIW |
If we want igniter to be truly ubiquitous across the ecosystem, it has to run everywhere elixir runs. |
There is a good news. Can compile for windows, apple and linux (x86 and arm!) woot! 🥳 Here: https://github.com/TwistingTwists/crucible/releases/tag/v0.1.1 |
I've had a long holiday in context of diwali in India. Back now. First update: Since AST is in Rust, and the AST manipulation is also available via rust methods, my idea is to keep all the AST and AST manipulation in Rust-land. Here is an API to begin with.
Let's see how this goes. |
Hi @TwistingTwists |
The methods for manipulating ast will be present in Rust (oxc_semantic) already does a lot of ast manipulation. the library will call those methods from elixir (via rustler) Proposed API on elixir side would be (roughly): For Handling Hooks in app.js
|
Requirement
One feature that could significantly enhance Igniter's support for all basic requirements in Phoenix is a robust JavaScript parser or manipulator.
Developing this from scratch would be a
large-scale
project, requiring considerable time and effort.Therefore, I suggest considering the Oxc project, which is implemented in Rust, as a potential solution.
Where we can use it:
Imagine you want to create a
Phoenix
component that requires aphx-hook
. You would need to modify theapp.js
file to inject the entire JavaScript file into theHook
object, or alternatively, create a separate JavaScript file, import it intoapp.js
, and then inject it into the hook.Currently, all of this is done manually in Elixir projects, which involves a lot of documentation and a complex process. This approach is not ideal and can discourage users from using it.
For example, take a look at this object that I injected using the JavaScript spread operator.
No I want to add
GetUserText
object.Thank you in advance
Refs
The text was updated successfully, but these errors were encountered: