Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
handlebars-intl
Advanced tools
This library provides Handlebars helpers for internationalization. The helpers provide a declarative way to format dates, numbers, and string messages with pluralization support.
This package used to be named handlebars-helper-intl
.
Handlebars Intl is part of FormatJS, the docs can be found on the webiste: http://formatjs.io/handlebars/
There are many examples on the website, but here's a comprehensive one:
{{formatMessage (intlGet "messages.post.meta")
num=post.comments.length
ago=(formatRelative post.date)}}
var context = {
post: {
date : 1422046290531,
comments: [/*...*/]
}
};
var intlData = {
locales : ['en-US'],
messages: {
post: {
meta: 'Posted {ago}, {num, plural, one{# comment} other{# comments}}'
}
}
};
var template = Handlebars.compile(/* Template source above */);
var html = template(context, {
data: {intl: intlData}
});
This example would render: "Posted 3 days ago, 1,000 comments" to the html
variable. The post.meta
message is written in the industry standard ICU Message syntax, which you can also learn about on the FormatJS website.
Let's make Handlebars Intl and FormatJS better! If you're interested in helping, all contributions are welcome and appreciated. Handlebars Intl is just one of many packages that make up the FormatJS suite of packages, and you can contribute to any/all of them, including the Format JS website itself.
Check out the Contributing document for the details. Thanks!
This software is free to use under the Yahoo! Inc. BSD license. See the LICENSE file for license text and copyright information.
FAQs
Handlebars helpers for internationalization.
The npm package handlebars-intl receives a total of 21,543 weekly downloads. As such, handlebars-intl popularity was classified as popular.
We found that handlebars-intl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.