---------------------------
Merged pull request `1`_: Fix calling ``node``/``nodejs`` binary in ``nodejs_version``.
- The primary nodejs executable being called ``nodejs`` is a Debian-ism, and is
not compatible with upstream nodejs and non-Debian distros, because upstream
just calls the binary ``node``.
- This makes the ``node_version`` method fail on non-Debian systems, where
``nodejs`` is actually called ``node`` instead.
- Instead of just executing the ``nodejs`` command, we now first search for it
in the ``$PATH``.
- When no node executable is found, a ``NodeBinaryNotFoundError`` is now raised.
- If one of the node executables is found, we return the result of ``node
--version`` or ``nodejs --version`` as before.
.. _Release 0.3: https://github.com/xolox/python-npm-accel/compare/0.2...0.3
.. _1: https://github.com/xolox/python-npm-accel/pull/1