2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Opens the Node.js online API documentation in the default browser.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2014-10-07 00:02:45 +02:00
|
|
|
if [[ -z "$BROWSER" ]]; then
|
|
|
|
print "$0: no web browser defined" >&2
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-10-12 05:13:58 +02:00
|
|
|
# TODO: Make the sections easier to use.
|
2014-10-07 00:02:45 +02:00
|
|
|
"$BROWSER" "http://nodejs.org/docs/$(node --version | sed 's/-.*//')/api/all.html#${1}"
|