{{ score }}
  # Create a globally-installed sybolic link to the cwd
# allowing local development and simultaneous consumption
# of modules
#
# Linking is a two-step process
#
# 1) in package dir:
npm link

# alias: npm ln
#
# 2) in some other location:
npm link package-name

# which creates a sybolic link from the local node_modules
# folder to the global symlink
#
# Note that `package-name` is taken from package.json, not
# directory name
#
# See https://docs.npmjs.com/cli/link