Difference between revisions of "Nodejs"

From WikEmacs
Jump to navigation Jump to search
(Nodejs: compilation regexp, emacs repl)
 
Line 23: Line 23:
  
 
[[Category:Programming]]
 
[[Category:Programming]]
[[Categor:Compile]]
 
 
[[Category:Intermediate]]
 
[[Category:Intermediate]]

Revision as of 13:26, 17 May 2017

List of utilities to work with Nodejs.

External packages

Run a Nodejs REPL

See nodejs-repl (in MELPA).

Tips and tricks

Recognize compilation stacktraces in Compilation or Shell buffers

Add a regexp:

(add-to-list 'compilation-error-regexp-alist-alist
    '(node "at [^ ]+ (\\(.+?\\):\\([[:digit:]]+\\):\\([[:digit:]]+\\)" 1 2 3))

See also

See also some config for CoffeeScript.