-
Notifications
You must be signed in to change notification settings - Fork 1
Node
Node.js, or just Node, is an open source, cross-platform runtime environment for server-side and networking applications. Node.js applications are written in JavaScript, and can be run within the Node.js runtime on most operating systems.
Node requires GCC, Make, and Python. If you are using Linux, you should already have these things.
cd ~/Software
curl -SL http://nodejs.org/dist/v0.10.36/node-v0.10.36.tar.gz | tar xzv
cd node-v0.10.36/
./configure --without-snapshot && make && sudo make install && sudo ldconfig
The --without-snapshot option is required so that node does not Segmentation Fault when it runs.
Node is basically JavaScript which you can run like any other programming lanugage that uses a REPL shell. It's actually written in C++ but is programmed to behave like JavaScript. Basically, if you have ever used the text console inside of Google Chrome to debug a webpage or to tinker with JavaScript elements, that's pretty much what Node does, only without the browser.
TODO: Show some code examples.
TODO: Explain what NPM does.
TODO: Explain what NPM packages are, which ones are popular and why they are so.
- JavaScript
- JSON
- Webkit
- CoffeeScript
- [Google Chrome](Google Chrome)
- Ruby
- OCAML
- Haxe
- Less
- REPL
- http://nodejs.org/
- https://github.com/joyent/node
- https://www.npmjs.com/
- http://forum.odroid.com/viewtopic.php?f=52&t=6548 - Fixing the Segmentation Fault bug for Node on ODroid