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 8499e156bf
Fix #264
2 years ago
.github * .github/FUNDING.yml: Setup for Liberapay 2 years ago
doc Split node command specification into program and args 3 years ago
img Rename the project to Indium 6 years ago
screenshots Update screenshots in the readme 6 years ago
server Add elisp and js support for disconnecting from the server. 2 years ago
sphinx-doc Fix github issue #251 2 years ago
test Split node command specification into program and args 3 years ago
.drone.yml Fix drone CI builds 4 years ago
.gitignore chore(git): add node_modules to .gitignore 3 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 Fix drone CI builds 4 years ago
indium-breakpoint.el FIX: Define fringe bitmaps even when run in daemon mode. 2 years ago
indium-chrome.el Set the default chrome data dir in .emacs.d 4 years ago
indium-client.el Fix github issue #256 2 years ago
indium-debugger-litable.el Make the new `seq-contains-p` call backwards compatible. 2 years ago
indium-debugger-locals.el Rewrite Indium to work as a client for the new server 5 years ago
indium-debugger.el Fix typos 3 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 Fix #264 2 years ago
indium-list-sources.el Rewrite Indium to work as a client for the new server 5 years ago
indium-nodejs.el Disconnect the debugging client when the NodeJS server requests it. 2 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 typos 3 years ago
indium.el Bump Indium to v2.1.4 3 years ago
readme.md * readme.md: Logo path 4 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.