raine / Replem
đ´ Instantly try npm modules in REPL environment
Stars: â 132
Programming Languages
javascript
184084 projects - #8 most used programming language
Projects that are alternatives of or similar to Replem
Npm Link Shared
links a folder of local modules with inter-dependencies to the target directory
Stars: â 123 (-6.82%)
Mutual labels: npm
Flagpack Core
Flagpack contains 260+ easily implementable flag icons to use in your design or code project.
Stars: â 127 (-3.79%)
Mutual labels: npm
Web Starter Kit
Web Starter Kit is an opinionated boilerplate for web development. A solid starting point for both professionals and newcomers to the industry.
Stars: â 130 (-1.52%)
Mutual labels: npm
Vim Ipython Cell
Seamlessly run Python code in IPython from Vim
Stars: â 127 (-3.79%)
Mutual labels: repl
Importabular
5kb spreadsheet editor for the web, let your users import their data from excel.
Stars: â 129 (-2.27%)
Mutual labels: npm
Greenkeeper
đ¤ đ´ Real-time automated dependency updates for npm and GitHub
Stars: â 1,564 (+1084.85%)
Mutual labels: npm
Npm Expansions
Send us a pull request by editing expansions.txt
Stars: â 1,777 (+1246.21%)
Mutual labels: npm
Pnpm
Fast, disk space efficient package manager -- åŋĢéįīŧčįįŖįįŠēé´įå
įŽĄįåˇĨå
ˇ
Stars: â 14,219 (+10671.97%)
Mutual labels: npm
React Ckeditor
CKEditor component for React with plugin and custom event listeners support
Stars: â 124 (-6.06%)
Mutual labels: npm
Eval In Repl
Consistent ESS-like eval interface for various REPLs
Stars: â 130 (-1.52%)
Mutual labels: repl
Atbmarket
đ JUST FOR FUN :: npm package of ATB plastic bag
Stars: â 123 (-6.82%)
Mutual labels: npm
Tsparticles
tsParticles - Easily create highly customizable particles animations and use them as animated backgrounds for your website. Ready to use components available for React.js, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Solid, Riot and Web Components.
Stars: â 2,694 (+1940.91%)
Mutual labels: npm
Vscode Deploy Reloaded
Recoded version of Visual Studio Code extension 'vs-deploy', which provides commands to deploy files to one or more destinations.
Stars: â 129 (-2.27%)
Mutual labels: npm
Instantly try npm modules in REPL environment.

features
- Install modules from npm, optionally at specific version.
- Install modules directly from GitHub at particular commit or branch.
- Use a custom REPL like
coffee-script/repl
. - Retains history of past sessions.
install
$ npm install -g replem
usage
replem [options] [<pkg>[:<alias>]]...
--repl require a custom repl
-v, --verbose enable verbose output
-h, --help displays help
Launches a REPL session with specified packages installed and available in the context.
arguments
Uses npm install
internally, so
similar types of arguments are accepted.
For example:
- Install a specific version:
replem [email protected]
- Install a module from GitHub:
replem githubname/reponame#commit
By postfixing module's name with :<alias>
you can set an alias for a
module. Module's exports will be available under this name.
$ replem ramda:R
Installed into REPL context:
- [email protected] as R
> R.inc(1) // 2
With a bang (!
) after everything, all module's properties will be directly
available in context:
$ replem ramda!
Installed into REPL context:
- [email protected] as ramda
> reduce === ramda.reduce
true
custom repl
To use a custom repl, install it to ~/.replem/node_modules
first:
$ npm install --prefix ~/.replem coffee-script
$ replem --repl coffee-script/repl lodash
> (n * 2 for n in [0..5])
Array [ 0, 2, 4, 6, 8, 10 ]
requiring from inside installed modules
The REPL context is provided with the function replem.require()
that can be
used to require from under ~/.replem/node_modules
.
caveats
- Multiple versions of the same module cannot be used concurrently.
Note that the project description data, including the texts, logos, images, and/or trademarks,
for each open source project belongs to its rightful owner.
If you wish to add or remove any projects, please contact us at [email protected].