Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neil-lindquist/swank-client
A Swank client implemented in JavaScript
https://github.com/neil-lindquist/swank-client
common-lisp remote-execution
Last synced: about 1 month ago
JSON representation
A Swank client implemented in JavaScript
- Host: GitHub
- URL: https://github.com/neil-lindquist/swank-client
- Owner: neil-lindquist
- License: mit
- Created: 2019-04-04T23:22:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-21T00:28:36.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T17:47:00.450Z (about 2 months ago)
- Topics: common-lisp, remote-execution
- Language: JavaScript
- Size: 146 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# swank-client
[![Build Status](https://travis-ci.org/neil-lindquist/swank-client.svg?branch=master)](https://travis-ci.org/neil-lindquist/swank-client)This is an implementation of a Swank client in Javascript, intended for communicating with running Common Lisp processes running a swank server, just like SLIME in Emacs.
Swank-client forms a core part of the [SLIMA](https://atom.io/packages/SLIMA) package for the Atom text editor.
This package was forked from [Steve Levine's swank-client-js](https://github.com/sjlevine/swank-client-js) due to maintenance issues.If you are interested in using this library, please let me know.
Currently, the only user is the [SLIMA](https://atom.io/packages/SLIMA) package for Atom, so the documentation is pretty minimal.This library provides an editor/view-independent API for making the following queries to a Swank server:
- Evaluating arbitrary Lisp expressions and files
- Retrieving auto documentation
- Controlling a debugger
- Autocompletion requests
- Object inspection requests
- Profiling functions
- Accessing compiler notes
- Macroexpansion requestsSee `test.js` for an example use case.