-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add guide: "Easy profiling for Node.js" #254
Conversation
Submitting this here on the recommendation of nodejs/docs#45 cc @Qard |
LGTM. 👍 |
It'd be very handy. 👍 |
This looks awesome. LGTM |
}); | ||
``` | ||
|
||
Please note that these are NOT recommended handlers for authenticating users in your Node.js applications and are used purely for illustration purposes. You should not be trying to design your own cryptographic authentication mechanisms in general. It is much better to use existing, proven authentication solutions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Italic this sentence?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good!
Adding a guide on the use of the tick processor and the built in Node.js profiler to understand application performance.
@nodejs/website @nodejs/benchmarking |
LGTM |
Add guide: "Easy profiling for Node.js"
Merged, although it's not linked on the site yet. |
Thanks! What is the process for getting this linked from the website? |
@matthewloring Add a link to the website. ;) |
@fhemberger Where would the link be added? I can probably handle it if nobody else has the time/desire. |
@bnb Oh, that would be great! Create a new page "Guides" under "Docs" and add the link there. Thanks! |
The plan is to have a directory page for guides, topics and reference pages. I just haven't got around to making it yet. A static page would probably be fine for now too, if you want to push that through. |
@bnb Were you able to look into including this in the website? I am happy to look into it but don't have any experience with the website code base yet. |
@matthewloring Sorry, I've had a lot on my plate the last couple weeks (family member had heart surgery). I can try to do this now. |
@fhemberger When you say create a new page "Guide" under "Docs", what exactly do you mean? Sorry for being thick. |
@bnb Add the page to the navigation structure in |
@fhemberger Thank you! 💯 |
Adding a guide on the use of the tick processor and the built in Node.js
profiler to understand application performance.