Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/js-log
Log utils for JS and TS.
https://github.com/karimaziev/js-log
Last synced: 4 days ago
JSON representation
Log utils for JS and TS.
- Host: GitHub
- URL: https://github.com/karimaziev/js-log
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2023-04-02T14:49:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-09T12:21:48.000Z (5 days ago)
- Last Synced: 2024-11-09T13:24:15.381Z (5 days ago)
- Language: Emacs Lisp
- Size: 132 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
Insert Js Logs.
** Installation
Emacs >= 30 with ~treesit~ support is required.
*** Manual
Download the source code and put it wherever you like, e.g. into =~/.emacs.d/js-log/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/js-log.git ~/.emacs.d/js-log/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/js-log/")
(require 'js-log)
#+end_src#+begin_src elisp :eval no
(use-package js-log
:straight (js-log
:repo "KarimAziev/js-log"
:type git
:host github)
:bind ((:map js-log-minibuffer-map
("C-j" . js-log-minibuffer-preview))))
#+end_src