Node.js
How to catch all?
process.on('uncaughtException', (err) => {
fs.writeSync(1, `Caught exception: ${err}\n`);
});How to use local (private) package?
# when clone, remember to clone with submodules
git clone --recursive git@REPO-URL
# to update
git submodule update --remote
npm install"my-package": "file:./my-package",FS
How to get the base file name: 'a.ext' -> 'a'?
How to glob in node?
Frontend
How to get url of root with domain?
A way to generate and download CSV files client-side
Last updated