daleharvey / jshint-mode

JSHint integrated into emacs
Other
93 stars 26 forks source link

where is jshint-emacs-path? #1

Closed rwillmer closed 13 years ago

rwillmer commented 13 years ago

git clone git://github.com/daleharvey/jshint-mode.gitj cd jshint-mode jshint-emacs-path >> ~/.emacs -bash: jshint-emacs-path: command not found

what/where is it?

daleharvey commented 13 years ago

jshint-emacs-path is only installed when npm is used to install, it just spits out the config filled in

(add-to-list 'load-path "~/path/to/jshint-mode") (require 'flymake-jshint) (add-hook 'javascript-mode-hook (lambda () (flymake-mode t)))

rwillmer commented 13 years ago

I'm going to hazard a guess that there's some dependency on npm/nodejs for this to work. Would be useful to have this documented before you start installing.

(Looks very useful, btw!)

daleharvey commented 13 years ago

ah yeh it needs node.js installed to work, I should document that a bit better, sorry about that