Node.js: Difference between revisions
mNo edit summary |
link to cheatsheet |
||
| (2 intermediate revisions by the same user not shown) | |||
| 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 == | == Parsoid Web Service API == | ||
https://freephile.org/node is a node.js implementation that powers the [[Visual editor]] for MediaWiki | https://freephile.org/node is a node.js implementation that powers the [[Visual editor]] for MediaWiki | ||
* {{@todo}} reconstitute the node service | |||
** {{done}} installed nodejs package (note that the package provides npm, so it conflicts with the npm standalone package) '''<code>dpkg-query --status nodejs</code>''' | |||
** {{AI}} configure port | |||
== Links == | == Links == | ||
| Line 13: | Line 18: | ||
* [https://nodejsmodules.org/ nodejs modules] | * [https://nodejsmodules.org/ nodejs modules] | ||
* [http://nodeguide.com/index.html Felix's Node.js Guide] | * [http://nodeguide.com/index.html Felix's Node.js Guide] | ||
* [http://browsenpm.org/package.json interactive cheatsheet for <code>package.json</code>] | |||
* Learnable.com has an intro to node.js course which is valuable. | * Learnable.com has an intro to node.js course which is valuable. | ||
* [http://nodeschool.io/ Node School] | * [http://nodeschool.io/ Node School] | ||