
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Build data-driven emails using Liquid template engine and MJML. This is a small library to render HTML from Liquid templates populated with data from any public API.
Install the package globally:
npm install -g datamail
Then use the command to render a HTML from a template file:
datamail template.liquid
This will generate the HTML file and put it next to the provided template. You can use clear HTML in templates but DataMail was initially developed for emails therefore it understands MJML out of the box. The following example will get data from GitHub API and render HTML with the search results.
{% import repositories from 'https://api.github.com/search/repositories?q=liquid+template+engine&per_page=5' %}
<mjml>
<mj-body>
<mj-section background-color="#fff">
<mj-column>
<mj-text font-size="20px">Top 5 Liquid Template Engines on GitHub</mj-text>
{% for item in repositories.items %}
<mj-text><a href="{{ item.url }}">{{ item.full_name }}</a></mj-text>
<mj-text padding-top="0">{{ item.description }}</mj-text>
{% endfor %}
</mj-column>
</mj-section>
</mj-body>
</mjml>
This project is available under the MIT License.
FAQs
Data-driven emails engine
The npm package datamail receives a total of 2 weekly downloads. As such, datamail popularity was classified as not popular.
We found that datamail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.