This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathjss.el
More file actions
63 lines (49 loc) · 2.03 KB
/
jss.el
File metadata and controls
63 lines (49 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;; jss.el --- An emacs interface to webkit and mozilla debuggers
;; Copyright (C) 2013 Edward Marco Baringer
;; Author: Marco Baringer <mb@bese.it>
;; Version: 0.7
;; Keywords: languages
;; Package-Requires: ((emacs "24.1") (websocket "0") (js2-mode "0"))
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE. See the GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public
;; License along with this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
;; MA 02111-1307 USA
;;; Commentary:
;; An emacs implementation of the client side protocol of webkit and
;; firefox's over-the-wire debugging protocols.
;; jsSlime (jss for short) is designed for emacs users who program web
;; based javascript applications. It connects directly to the browser
;; and uses the tools (debugger, inspector, source code browsing,
;; evaluator, etc.) as they are in the browser.
;; jss is, currently at least, focused on the features required by
;; javascript developers, tools for live editing (or even just
;; inspecting) the DOM and CSS are not currently available.
;; See README.org for more details.
;;; Code:
;; This is just the top file for jsSlime. It simply loads the various
;; .el files in the right order
(require 'jss-browser-api)
(require 'jss-script)
(require 'jss-remote-value)
(require 'jss-browser-webkit)
(require 'jss-browser-firefox)
(require 'jss-browser)
(require 'jss-prompt)
(require 'jss-console)
(require 'jss-io-pretty-printers)
(require 'jss-io)
(require 'jss-debugger)
(require 'jss-super-mode)
(require 'jss-http-repl)
(provide 'jss)
;;; jss.el ends here