Optimizations
Compiler optimization
Will be optimized
app.get((req, res) => {
const { origin } = req.headers; // This line will be optimized by compiler
});Will not be optimized
Precompile / Ahead-of-Time compile
Async example
Cache example
Improve error stack trace logs
Last updated