Node.js v24.4.0 is out! 💚 What's new? • crypto.hash() supports outputLength (XOF) • fs.mkdtempSync() gets disposable mode • --watch-kill-signal lands • permission.has('addon') is now supported • spawn() propagates permission flags • sqlite adds readBigInts More in: https://lnkd.in/dFsRNp2U
⚙️Mohamad Nimer
1mo
Interesting!
Mohammad Qaderi
1mo
Wake me up on v30
Pelle Wessman
1mo
Which looks likely to be backported? (Much easier to make use of in modules when backported)
More functionality less memory 😉
Sherif Yasser
1mo
• fs.mkdtempSync() gets disposable mode Finally temp has a meaning, thanks
Chandan Sahu
1mo
Big thanks for sharing, Rafael
docker pull node:24-alpine 😉
Danilo Guedes
1mo
awesome! #goNodeJs
Madhav Nair
1mo
fs.mkdtempSync() sounds useful
--world
1mo# Download and install nvm: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash # in lieu of restarting the shell \. "$HOME/.nvm/nvm.sh" # Download and install Node.js: nvm install 24 # Verify the Node.js version: node -v # Should print "v24.4.1". nvm current # Should print "v24.4.1". # Verify npm version: npm -v # Should print "11.4.2".