A JavaScript development environment for Emacs https://indium.readthedocs.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Nicolas Petton cf759ec06d
Fix #199
4 years ago
doc Release v2.1.1 4 years ago
img Rename the project to Indium 6 years ago
screenshots Update screenshots in the readme 6 years ago
server Release Indium server v3.4.1 4 years ago
sphinx-doc Release v2.1.1 4 years ago
test GH Fix issue #194 4 years ago
.gitignore Ignore sphinx-doc/_build 6 years ago
.gitlab-ci.yml Update the Makefile to handle the Node server 5 years ago
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 6 years ago
CONTRIBUTING.md Fix typo in CONTRIBUTING.md. (#147) 5 years ago
LICENSE Add LICENSE and readme 7 years ago
Makefile Update the Makefile to handle the Node server 5 years ago
indium-breakpoint.el Fix adding/removing breakpoints when the client is not connected 4 years ago
indium-chrome.el Fix #199 4 years ago
indium-client.el Send the current stack frame when requesting completion 4 years ago
indium-debugger-litable.el Rewrite Indium to work as a client for the new server 5 years ago
indium-debugger-locals.el Rewrite Indium to work as a client for the new server 5 years ago
indium-debugger.el Fix for jsx and other js2 derived modes. 4 years ago
indium-faces.el Update copyright years 5 years ago
indium-inspector.el Fix indium-inspector-previous-reference so it works on 1st reference 4 years ago
indium-interaction.el Print the result of all evaluations in the echo area 4 years ago
indium-list-sources.el Rewrite Indium to work as a client for the new server 5 years ago
indium-nodejs.el GH Fix issue #194 4 years ago
indium-render.el Fix the sorting object properties in the inspector 4 years ago
indium-repl.el Send the current stack frame when requesting completion 4 years ago
indium-scratch.el Rewrite Indium to work as a client for the new server 5 years ago
indium-seq-fix.el Update copyright years 5 years ago
indium-structs.el Fix how a breakpoint location is computed 4 years ago
indium.el Release v2.1.1 4 years ago
readme.md Remove test coverage support 5 years ago

readme.md

Indium

MELPA Emacs build status Documentation Status Liberapay Gitter logo

A JavaScript development environment for Emacs.

Indium connects to a browser tab or nodejs process and provides many features for JavaScript development, including:

  • a REPL (with auto completion) & object inspection;
  • an inspector, with history and navigation;
  • a scratch buffer (M-x indium-scratch);
  • JavaScript evaluation in JS buffers with indium-interaction-mode;
  • a stepping Debugger, similar to edebug, or cider.

Documentation

Installation instruction and other documentation can be found on readthedocs.

WARNING: Indium 2.0 now uses a client/server architecture, see installation instuctions.

Screenshots

The stepping debugger

Debugger

The REPL with company-mode

REPL

The REPL showing clickable output

REPL

The inspector

Inspector

Missing features

Indium is young, here's a list of missing/wanted features

  • Code evaluation using C-x C-e from project JS buffers
  • Adding breakpoints (to remove the need for debugger statements)
  • Network inspector (could get inspiration from restclient.el)
  • DOM inspector
  • Start processes (chromium, node, grunt, gulp, etc.) from Emacs and attach a indium connection to it.

Backends

There is currently support for Chrom[e|ium] & nodejs. The firefox backend is in the TODO list.