Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
In this video, we'll take a look at the Node.js website and see how we can create our own server.
Node.js APIs Used
Killing processes
First find the process.
$ ps -aux
Second kill the process.
$ kill -9 <process id/PID from ps>
Using -9
sends a signal to the process to kill immediately. It can't be ignored by the process and the process can't do any clean up. Use wisely. You can read more here.
Leet Speak
Leet speak is used in "hacking" or programming circles where letters are substituted with numbers. The term leet comes from the word elite and can be written as l33t or 1337. Sometimes in code samples you may see 1337 being used.
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up