Skip to content
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

NodeJS is missing DOM api. #83

Open
lamba92 opened this issue Feb 4, 2022 · 11 comments
Open

NodeJS is missing DOM api. #83

lamba92 opened this issue Feb 4, 2022 · 11 comments
Labels
enhancement New feature or request

Comments

@lamba92
Copy link

lamba92 commented Feb 4, 2022

When running into NodeJS the dom API are not available. I would recommend a fallback to https://github.com/jsdom/jsdom with a separate artifact for nodejs.

@pdvrieze pdvrieze added the enhancement New feature or request label Feb 6, 2022
@pdvrieze
Copy link
Owner

pdvrieze commented Feb 6, 2022

I'm not particularly interested in nodejs (if you are using Kotlin it makes little sense to use it). The main blocker though would be that (beyond the JS ecosystem being a bit bonkers) kotlin multiplatform doesn't really support multiplatform well. If I do something I'd probably do some runtime detection magic that would allow using jsdom at runtime, but work "automagically".

@lamba92
Copy link
Author

lamba92 commented Feb 7, 2022

My usecase would be AWS Lambdas to cope with the cold start issue, but I understand your point. Indeed I would prefer 2 really separated target for JS which is one NodeJS and another the browser in the K/MP model to solve those evil issues.

@pdvrieze
Copy link
Owner

pdvrieze commented Feb 8, 2022

@lamba92 You may be able to try native for lambda's (they are best on cold start).

@lppedd
Copy link

lppedd commented Jul 3, 2023

I wonder what you've ended up using for Node @lamba92.
This library would suite me perfectly but the missing piece is really Node.js.

@lppedd
Copy link

lppedd commented Jul 3, 2023

For context @pdvrieze, I'm developing a multiplatform library that will be consumed by Eclipse plugins, VS Code plugins, and native CLIs.

@pdvrieze
Copy link
Owner

I can probably make it work using the generic parser/serializer, but it would still be limited as it still doesn't provide dom. Alternatively I may be able to use WASM/WASI as both are properly supported.

@lppedd
Copy link

lppedd commented Sep 21, 2024

In the past months I developed my own solution using https://github.com/WebReflection/linkedom as DOM replacement under Node.js.
Small lib, and it is performant.

@pdvrieze
Copy link
Owner

I probably just need to create a way to load the browser dom if available, and the fallback dom if not.

@pdvrieze
Copy link
Owner

pdvrieze commented Mar 4, 2025

The new release candidate should now support node without using dom. It might work with an alternative dom implementation if it is sufficiently complete (it requires at least a DomParser object).

@lppedd
Copy link

lppedd commented Mar 4, 2025

Thanks! How did you make it work? (can also point to a commit in case)

I'd like to see if I can reuse linkedom as DOM replacement in Node.

@pdvrieze
Copy link
Owner

pdvrieze commented Mar 4, 2025

@lppedd The way it works is that it uses the fact that even for the browser it was already possible to use the generic parser. After that I needed to remove some dependencies on DOM for compact fragments and have some mechanism to ignore some dom dependent tests.

The main commit that actually has the DOM code is aaeb118 and

Other commits mainly work to make other parts of the implementation more generic (not hardcode DomReader/DomWriter).

The main files are: core/base/src/jsMain/kotlin/nl/adaptivity/xmlutil/XmlStreaming.js.kt and core/base/src/jsMain/kotlin/nl/adaptivity/xmlutil/core/impl/dom/DOMImplementationImpl.kt

For the needed code see:

public actual fun newWriter(
writer: Writer,
repairNamespaces: Boolean /*= false*/,
xmlDeclMode: XmlDeclMode /*= XmlDeclMode.None*/,
): XmlWriter {
if (jsTypeOf(js("DOMParser")) == "undefined") return newGenericWriter(writer, repairNamespaces, xmlDeclMode)
val document = xmlStreaming.genericDomImplementation.createDocument()
@Suppress("DEPRECATION")
return WriterXmlWriter(writer, DomWriter(document, xmlDeclMode = xmlDeclMode))
}

You basically need to make sure that DOMParser is available and (by parsing some dummy xml can be used to retrieve a dom implementation).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants