I was searching for node.js tutorials for pretty long..
I just got my book for node and I realized that before I learned something I had to use express.js module.
There is a tutorial or a book that teaches how to create pure node.js web applications,
without any node packaged modules (npm)?
Because firstly I want to learn pure node.js, and maybe then I will use some of the npm later.
Thanks in advance
The official API documentation is the best and most up-to-date resource when it comes to pure node.js. For web applications see the HTTP API documentation at http://nodejs.org/api/http.html.
You could also check out previous questions like this, this seemed like a great answer: How do I get started with Node.js.