| OLD | NEW |
| 1 # INSTALLING NODE/NPM/BOWER | 1 # INSTALLING NODE/NPM/BOWER |
| 2 | 2 |
| 3 The version of npm in apt-get is too old for bower. | 3 The version of npm in apt-get is too old for bower. |
| 4 # Ensure ~/local/bin is on $PATH | 4 # Ensure ~/local/bin is on $PATH |
| 5 $ mkdir ~/local | 5 $ mkdir ~/local |
| 6 $ export PATH="$HOME/local/bin:$PATH" | 6 $ export PATH="$HOME/local/bin:$PATH" |
| 7 # Install Node | 7 # Install Node |
| 8 $ mkdir -p /tmp/node-install && cd /tmp/node-install | 8 $ mkdir -p /tmp/node-install && cd /tmp/node-install |
| 9 $ curl https://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-component
s=1 | 9 $ curl https://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-component
s=1 |
| 10 $ ./configure --prefix=${HOME}/local | 10 $ ./configure --prefix=${HOME}/local |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 karma: test runner. Runs the unit tests in an instance of Chrome and pipes the | 88 karma: test runner. Runs the unit tests in an instance of Chrome and pipes the |
| 89 results to the command line. By default, it watches for changes to files | 89 results to the command line. By default, it watches for changes to files |
| 90 and will automatically re-run the tests. To run once and exit, use | 90 and will automatically re-run the tests. To run once and exit, use |
| 91 'karma start --single-run' or 'make single-test'. | 91 'karma start --single-run' or 'make single-test'. |
| 92 | 92 |
| 93 mocha: testing framework. Provides good asynchronous and synchronous test | 93 mocha: testing framework. Provides good asynchronous and synchronous test |
| 94 support. Tests run serially, so exceptions are reported for the right | 94 support. Tests run serially, so exceptions are reported for the right |
| 95 test case. | 95 test case. |
| 96 | 96 |
| 97 chai: assertion library. | 97 chai: assertion library. |
| 98 | |
| 99 catapult: Project containing Trace Viewer, used as the front-end for the | |
| 100 timeline view. | |
| OLD | NEW |