
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@runeai/hermes
Advanced tools
Hermes provides utility functions that help automate the machine translation workflow. It doesn't perform any extraction for strings to be translated, handle resolving human & machine translations, nor logic for when files should be committed.
Hermes provides utility functions that help automate the machine translation workflow. It doesn't perform any extraction for strings to be translated, handle resolving human & machine translations, nor logic for when files should be committed.
const trSync = require("@runeai/hermes")
;(async function() {
await trSync({
"languageData": {
"15": { "iso6391code": "zh", "crowdinLocaleCode": "zh-CN" },
"17": { "iso6391code": "es", "crowdinLocaleCode": "es-ES" },
"22": { "iso6391code": "ru", "crowdinLocaleCode": "ru" },
},
"filePaths": ["translations/en/messages.po"],
"crowdinInfo": {
"projectName": "superawesomeproject",
"apiKey": "xxxxxxxxx"
},
"processables": [
{ "phrase": "Friend Boost", "processor": "lowercase" },
{ "phrase": "Quick Match", "processor": "lowercase" }
]
})
})()
processables
are provided, the function will match the phrase
in any locale files and process it by one of the predetermined processors (see list below).languageData
payload when invoked.lowercase
- lowercases the entire string
...more to come!
FAQs
Hermes provides utility functions that help automate the machine translation workflow. It doesn't perform any extraction for strings to be translated, handle resolving human & machine translations, nor logic for when files should be committed.
We found that @runeai/hermes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.