
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
adonis-antl
Advanced tools
:pray: This repository makes it easy to internationalize your AdonisJs applications.
AdonisJs Internalization is an addon to add support for multiple languages. It ships Views Helpers to format dates, numbers, string messages and currency.
Installing AdonisJs Internalization (adonis-antl) is a pretty simple process.
npm i --save adonis-antl
Providers are defined inside bootstrap/app.js file.
const providers = [
'...',
'adonis-antl/providers/AntlProvider'
]
Aliases are also defined inside bootstrap/app.js file.
const aliases = {
Antl: 'Adonis/Addons/Antl',
Formats: 'Adonis/Addons/AntlFormats'
}
That's all and you are good to go.
Configuration for adonis-antl is supposed to be merged inside config/app.js file. You can grab the sample configuration from examples
Once the installation process has been completed, you are good to make use of the Antl alias inside your app.
const Antl = use('Antl')
Antl.formatAmount('1000', 'USD') // return $1,000.00
// Runtime locale
Antl.for('fr').formatAmount('1000', 'USD') // return 1 000.00 $US
Read more about drivers, formatting messages and available methods at official documentation
In favor of active development we accept contributions for everyone. You can contribute by submitting a bug, creating pull requests or even improving documentation.
You can find a complete guide to be followed strictly before submitting your pull requests in the Official Documentation.
FAQs
Localization for adonisjs app
The npm package adonis-antl receives a total of 7 weekly downloads. As such, adonis-antl popularity was classified as not popular.
We found that adonis-antl 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.