I recommend you read articles on gamedev, like : good ebooks and why is an mmorpg hard to make.
There are a few libraries out there for clientside javascript game development like craftyjs and the render engine.
There are also tools like Game Closure that allow you to write game (I highly recommend and anticipate this one for its native mobile support).
In terms of libraries and tools for a server side game engine in node.js, there are none. I'm in the process of writing an engine myself and it's a slow struggle.
In terms of writing actual games, you're going to have to start low and work up. Many will tell you that writing classics such as pong, tetris, breakout and mario are a must for making mistakes and learning from them.
Writing a game engine is a challenge but do-able. Writing a re-useable game engine or a library that you intend others to use for writing games on node without any experience is a very steep learning curve.
There are many struggles to overcome and many articles to read. Your question is far too broad to get specific. I recommend you try using some client side libraries to get some ideas and concepts in. As a side-note if you don't know any javascript yet, learning javascript and game development at the same time is going to be a struggle.
As a bonus note here is an OS multiplayer js game build on node.js and HTML5 Canvas NodeGame Shooter. It's a nice example but I wouldn't call it good code to learn from.
Realistically making an MMORPG in node.js/browser which is a playable beta rather then a tech demo will probably take you 2 years. Add a year if you want the engine to be re-usable as a stand-alone library. Add 6 months if you know no javascript. Add another year if you've never done programming before. Not to mention that concepts such good game design, artwork and audio are completely ignored for simplicity.
Now a tetris clone can be written in 24 hours without any prior experience.
As a further disclaimer if you wanted a real time mmo in the browser and node.js you're going to have to write your own latency hiding mechanism. I've been hitting a brick wall with that for 4 months. You're going to have to somehow make the fact it takes messages 0.2s to go between a client and a server disappear and make feedback to user input instant. And you have to do all of that without having the clients get out of sync with the server. That's a really big problem and it gets a lot worse if two users are trying to interact with the same object.