Difference between revisions of "Node.js"

From Freephile Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Intro ==
 
== Intro ==
 
[http://radar.oreilly.com/2011/07/what-is-node.html What is node?]<ref>Radar O'Reilly article from 2011 that is a good overview.</ref> [https://www.youtube.com/watch?v=OUCHr2H-7_g video with Tom Hughes-Croucher of Joyent] Node.js is a platform for doing network applications using [[JavaScript]] on the client and server.  Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine.  The community is well-developed and there are many pre-written 'modules'. See the [[wp:Node.js|wikipedia article]] for more.
 
[http://radar.oreilly.com/2011/07/what-is-node.html What is node?]<ref>Radar O'Reilly article from 2011 that is a good overview.</ref> [https://www.youtube.com/watch?v=OUCHr2H-7_g video with Tom Hughes-Croucher of Joyent] Node.js is a platform for doing network applications using [[JavaScript]] on the client and server.  Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine.  The community is well-developed and there are many pre-written 'modules'. See the [[wp:Node.js|wikipedia article]] for more.
 +
 +
== Parsoid Web Service API ==
 +
https://freephile.org/node is a node.js implementation that powers the [[Visual Editor]] for MediaWiki
  
 
== Links ==
 
== Links ==
Line 17: Line 20:
 
* [https://angularjs.org/ AngularJS] - a 100% JavaScript client-side templating framework that provides data binding. Not related to node.js, but useful on the client-side.
 
* [https://angularjs.org/ AngularJS] - a 100% JavaScript client-side templating framework that provides data binding. Not related to node.js, but useful on the client-side.
 
* [http://eirikb.github.io/nipster/ nipster] search for npm modules
 
* [http://eirikb.github.io/nipster/ nipster] search for npm modules
 +
* http://howtonode.org/ created by Tim Caswell (see https://creationix.com/)
  
 
== Front-end Build Tools ==
 
== Front-end Build Tools ==

Revision as of 15:55, 25 June 2014

Intro[edit | edit source]

What is node?[1]video with Tom Hughes-Croucher of Joyent Node.js is a platform for doing network applications using JavaScript on the client and server. Basically, it's like an Apache web server, written in C, and using the Chrome browser's JavaScript engine. The community is well-developed and there are many pre-written 'modules'. See the wikipedia article for more.

Parsoid Web Service API[edit | edit source]

https://freephile.org/node is a node.js implementation that powers the Visual Editor for MediaWiki

Links[edit | edit source]

Front-end Build Tools[edit | edit source]

When doing nodejs development or front-end development, you may also wish to employ some sort of build system or task runner for performing repetitive tasks like minification, compilation, unit testing, linting, etc.

Node Happenings[edit | edit source]

The people of Node (e.g. Mikeal Rogers) are doing a lot of interesting things. Like JSFest which happened in SanFrancisco 2014, or Node school.

References[edit source]

  1. Radar O'Reilly article from 2011 that is a good overview.