
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.
aspax-styl-handler
Advanced tools
A plugin that enables ASPAX to handle Stylus files.
Type this in the folder where you're running ASPAX:
npm install aspax-styl-handler
If you're running ASPAX in a Node.js application root folder, consider using the --save-dev option to avoid deploying this plugin to your production environment:
npm install aspax-styl-handler --save-dev
Simply add .styl source files in aspax.yml:
app.css:
- lib.css
- styles-1.styl
- script-2.styl|nib
nib: include support for nib CSS3 extensions - see more here.
With nib enabled, something like this:
button
border-radius 1px 2px / 3px 4px
button
border-radius 5px
button
border-radius bottom 10px
...will yield:
button {
-webkit-border-radius: 1px 2px/3px 4px;
-moz-border-radius: 1px 2px/3px 4px;
border-radius: 1px 2px/3px 4px;
}
button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
button {
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
border-top-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-bottom-right-radius: 10px;
border-bottom-right-radius: 10px;
}
This plugin is smart enough to recursively scan for @import statements and automatically trigger ASPAX to rebuild the parrent asset if one of the files in your import tree changes.
If you find this piece of software useful, please tweet about ASPAX and endorse me on LinkedIn:
FAQs
Plugin enabling ASPAX to handle Stylus files.
The npm package aspax-styl-handler receives a total of 4 weekly downloads. As such, aspax-styl-handler popularity was classified as not popular.
We found that aspax-styl-handler 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.