Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
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
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.