
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
crowdin-glossary
Advanced tools
Create and upload translation glossaries using the Crowdin API

With Glossary, you can create, store, and manage all the project terminology in one place. The main aim of terminology is to explain some specific terms or the ones often used in the project, so they can be translated properly and consistently.
See support.crowdin.com/glossary and support.crowdin.com/api/upload-glossary for details.
npm install crowdin-glossary --save
const glossary = require('crowdin-glossary')({
project: 'your-crowdin-project',
crowdinKey: process.env.CROWDIN_KEY
})
glossary.add('IME', 'Input Method Editor. A program that...')
glossary.add('IPC', 'Inter-Process Communication. Electron uses IPC to send...')
glossary.add('MAS', 'Acronym for Apple Mac App Store.')
glossary.upload()
require('crowdin-glossary')(opts)Returns a new empty glossary instance.
opts Object
project String (required) - The name of your project on CrowdincrowdinKey String (required) - If not supplied as an option, then process.env.CROWDIN_KEY will be the fallback.openAfterUpload Boolean (optional) - Open the project glossary in web browser after upload is complete. Defaults to true. This feature is disabled on CI environments by detecting process.env.CI.glossary.add(term, description)Adds an entry to the glossary instance. Entries only exist in memory until you
call glossary.upload()
term String (required)description String (required)glossary.upload()Async function that uploads all the added terms to Crowdin. On success, it returns the result of the POST request. On failure, it logs an error.
glossary.entriesA getter that returns the existing added entries as a key-value object.
glossary.webpageA getter that returns the web URL of your project's glossary on crowdin.com
glossary.csvA getter that converts your entries into a valid CSV string for upload to Crowdin. Used for internal purposes.
MIT
FAQs
Create and upload translation glossaries using the Crowdin API
The npm package crowdin-glossary receives a total of 7 weekly downloads. As such, crowdin-glossary popularity was classified as not popular.
We found that crowdin-glossary 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.