Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

repl-edit

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repl-edit

Edit code in the repl using a real text editor

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

repl-edit

Use your text editor to edit commands in Node's repl.

Installation

npm install repl-edit

Usage

You can fire up a repl with editing capabilities by running node-repl-edit.

(It would be nice to extend an existing repl session but that's not possible with Node's repl module right now.)

Commands

edit

The first time you run edit() in a repl a temporary file is created, specific to that session, and opened in your editor. Type away and then save and close the file when you're done. The file will be loaded and executed at that time.

run

To run whatever command you've been working on without editing it again type run().

setEditor

setEditor('mate -w') will change your editor to TextMate for this session. Note that this command changes the environment variable EDITOR for the repl process.

stash

stash('/path/to/a/file') will save your command to the named file.

unstash

unstash('/path/to/a/file') will restore the contents of that file for you to run and/or edit.

Future

Instead of polluting the global namespace with functions I'd rather extend Node's repl to allow user-defined dot commands (just like .break and .clear), and then use that capability to provide commands like .edit and .stash <filename>.

The first time edit() is run in a repl instead of an empty file the command should be seeded with the last command that was executed.

If the native repl module exports the currently running repl object it will be possible to attach to an existing repl instead of having to run a separate binary that loads a repl.

License

Copyright 2010 Sami Samhuri sami@samhuri.net

MIT (see the file named LICENSE)

FAQs

Package last updated on 18 May 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc