Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/straps/nodejs-demos
Node.js examples and demo code, just as reference or documentation
https://github.com/straps/nodejs-demos
Last synced: about 2 months ago
JSON representation
Node.js examples and demo code, just as reference or documentation
- Host: GitHub
- URL: https://github.com/straps/nodejs-demos
- Owner: straps
- Created: 2011-03-31T08:15:26.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-06T09:57:26.000Z (over 13 years ago)
- Last Synced: 2024-04-14T09:07:39.919Z (9 months ago)
- Language: JavaScript
- Homepage: http://www.strx.it/2011/04/node-js-learning-and-debugging/
- Size: 993 KB
- Stars: 38
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node.js examples, demos and tests just as reference and doc
## Install node and npm
To install node in Ubuntu [click here](http://goo.gl/5FrHg)
For other platforms [click here](http://goo.gl/SWiTb)
## Setup your debugging environment
`npm install node-inspector` (and optional `npm install v8-profiler`) will install
the [node-inspector](http://goo.gl/mQfeA) module,
perfect for step-by-step debug of node.js programsNow run `node-inspector &` and start your node app as `node --debug-brk app.js`; open
the page `http://127.0.0.1:8080/debug?port=5858` on a webkit-based browser
and see the magic.If you want, you can use my [nodebug](https://github.com/straps/nodejs-demos/blob/master/nodebug)
that launch node-inspector, the application and google chrome in debug mode