f34nk
Hello!
I just published my first draft of ModestEx, a Elixir/Erlang binding to lexborisov’s Modest library.
Modest is a fast HTML renderer implemented as a pure C99 library with no outside dependencies.
ModestEx exposes features to do pipeable transformations on html strings with CSS selectors, e.g. find(), prepend(), append(), replace() etc.
iex> ModestEx.find("<p><a>Hello</a> World</p>", "p a")
{:ok, "<a>Hello</a>"}
iex> ModestEx.serialize("<div>Hello<span>World")
{:ok, "<html><head></head><body><div>Hello<span>World</span></div></body></html>"}
The binding is implemented as a C-Node following the excellent example in @Overbryd 's package nodex. If you want to learn how to set up bindings to C/C++, you should definitely check it out.
Before that I experimented with a lot of other Html parser libraries like gumbo-parser, gumbo-query and GQ. I even implemented a binding package called gumbo_query_ex.
However Modest is currently the most active and most promising.
This project is under development!
Stay tuned for more features like ModestEx.remove, ModestEx.prepend, ModestEx.append…
Tell me what you think ![]()
Best, F34nk
Trending in Announcing
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
OvermindDL1
Ah it looks like a C-based variant of Meeseeks except it can also create HTML too, quite nice!
mischov
Modest is the full project of which Alexander Borisov’s (lexborisov) myhtml, which also has an Elixir wrapper, is a part. It’s closer to being a C-varient of… maybe Servo? It’s larger in scope than just parsing HTML.
Everything I’ve seen suggests that Modest (and probably ModestEx) will be fast, with low resource usage. That’s pretty great.
f34nk
Thanks guys!
I have a use case where a request reads html from a database and before rendering I need to do some changes on the html string. In my case the html is quite large and the changes are quite extensive.
The idea for ModestEx is to implement a set of features that just do transformations on a html string. Each transformation feature will be done in C.
Something like:
will return:
… ready to render in a template.
Or you could also serialize it:
and return:
Which is already a (more or less) valid page!
Of course, if you need further decoding htmlex, floki or Meeseeks are great!
I see ModestEx as a useful addition to the landscape of html tools in Elixir.
mischov
For sure, I have been very hesitant to try adding transformations to Meeseeks, so I’m glad somebody’s doing it.
OvermindDL1
Oooo, that’s fascinating!
Yeah this looks very useful!
Heh, yeah it’s quite a thing to tackle. ^.^
f34nk
Hey @mischov @OvermindDL1
I just published ModestEx
v0.0.2-dev.Thanks again for your input. It’s a lot clearer now what the main strength of the library actually is!
I added a new feature
ModestEx.get_attributeandModestEx.set_attribute.And you can actually pipe them together.
Overbryd
Wohoo! This is great news
Will we get Elixir based end 2 end headless browser testing soon?
Thanks for the reference and I am delighted to see a binding to Modest.
I have a few use cases where I will get back to it for sure.
f34nk
Hey guys,
the first mayor release is coming soon and I hope to publish it before ElixirConf EU in April.
I also implemented a new CSS selector for
:contains(text)in Modest PR#42.I’ll keep you updated!
f34nk
Release v1.0.0
This release is stable.
Total 16 features implemented. See complete feature list.
Total 38 selector patterns implemented (including custom selector
:contains(text)).See complete list of supported CSS selectors.
The package includes all binding code under the folder
target/modest_worker.All
Modestrelated features are implemented in a singleClibrary called modest_html.This way, all features are tested in a
Cenvironment usingCMake/CTestwith memory tracking enabled using a library called dmt.Please feel invited to check it out
Best, F34nk
cro
Greetings @f34nk , I have been trying to get
modest_exto work with Erlang 24.x. I know my C/C++ is rusty, but I’ve spent a good half-day on this without any progress. I am currently stuck looking forvec.h, which doesn’t seem to exist anywhere on my Mac or Linux boxes. Any pointers here? Thank you!