Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Reticulate | 1,505 | 188 | 156 | 6 days ago | 30 | January 26, 2022 | 473 | apache-2.0 | R | |
R Interface to Python | ||||||||||
Clj Ssh | 202 | 72 | 2 years ago | 39 | March 20, 2016 | 29 | Clojure | |||
SSH commands via jsch | ||||||||||
Go Repl | 189 | 9 years ago | June 04, 2021 | 5 | Go | |||||
A Go REPL. Builds up a source .go file over time, compiles it for output. | ||||||||||
Flok | 187 | a month ago | 26 | gpl-3.0 | TypeScript | |||||
Web-based P2P collaborative editor for live coding sounds and images | ||||||||||
Local Repl | 138 | 12 | 11 | 2 years ago | 9 | May 06, 2018 | 7 | mit | JavaScript | |
🐚 Project-specific configuration for the Node.js REPL | ||||||||||
Programming4everybody | 54 | 5 months ago | other | Ruby | ||||||
https://info.lewagon.com/programming-for-everybody-tokyo | ||||||||||
Activeshell | 53 | 11 years ago | mit | JavaScript | ||||||
A shell for the Web | ||||||||||
Vim Worksheet | 30 | 8 years ago | 1 | Python | ||||||
Worksheet for Vim | ||||||||||
Multigraphs.jl | 29 | 2 months ago | 6 | mit | Julia | |||||
A multigraph extension of Graphs.jl | ||||||||||
Swam | 25 | 3 | 2 years ago | 4 | July 11, 2020 | 3 | apache-2.0 | WebAssembly | ||
WebAssembly engine in Scala |
REPL extension for Vorpal.js. Installs the repl
command, which drops you into a REPL session within the context of the application. Built in to Vantage.js by default.
npm install vorpal-repl
npm install vorpal
// index.js
const Vorpal = require('vorpal');
const repl = require('vorpal-repl');
const vorpal = Vorpal();
vorpal
.delimiter('node~$')
.use(repl)
.show();
MIT