Installed node and javascripting tutorial this mornig on Windows 8 machine:
$ node --version
v0.10.35
I then installed the current (v1.9.1) release of the javascripting tutorial from http://nodeschool.io/#workshopper-list using the command:
npm install -g javascripting
I created a file, introduction.js, with the contents:
I then ran the verify command, the the output was:
# O-oh, something isn't working.
# But don't panic!
-------------------
## Check your solution:
Solution
===================
Your Attempt
===================
hello
Difference
===================
hello
Checked in with the nodeschool discussion at https://gitter.im/nodeschool/discussions, and martin verified that this is a problem introduced in the v1.9.1 release. He had me revert to v1.9.0:
npm i javascripting@1.9.0 -g
And now the verification is working correctly:
$ javascripting verify introduction.js
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ YOUR SOLUTION IS CORRECT! @@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-------------------
# YOU DID IT!
Installed node and javascripting tutorial this mornig on Windows 8 machine:
I then installed the current (v1.9.1) release of the javascripting tutorial from http://nodeschool.io/#workshopper-list using the command:
I created a file, introduction.js, with the contents:
I then ran the verify command, the the output was:
Checked in with the nodeschool discussion at https://gitter.im/nodeschool/discussions, and martin verified that this is a problem introduced in the v1.9.1 release. He had me revert to v1.9.0:
And now the verification is working correctly: