🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
r

repl-history

A custom history for your custom REPL

0.0.2
latest
66

Supply Chain Security

100

Vulnerability

70

Quality

76

Maintenance

100

License

Version published
Weekly downloads
28
-54.84%
Maintainers
1
Weekly downloads
 
Created
Issues
0

repl-history

This package allows you to easily include history into your custom REPL. By default it will create a .repl_history file in it's directory and keep the most recent 200 lines. You can adjust those settings by passing appropriate options.

Quickstart

Install: npm i repl-history

const repl = require('repl').start()
require('repl-history')(repl)

Options

You can pass an options object as a second parameter.

  • filePath (string, [repl-history dir]/.repl_history): Specify an alternative file. Must be a fully-qualified path.
  • useHome (boolean, false): Use the user's default history file ~/.node_repl_history. This option supercedes filePath.
  • maxSave (number, 200): The maximum number of lines to save. Set to 0 to save all lines.

Examples

// specify a different file name
const path = require("path")
const repl = require('repl').start()
require('repl-history')(repl, {filePath: path.join(__dirname, "commands")})
// use the home history file, keep 600 lines
const repl = require('repl').start()
require('repl-history')(repl, {useHome: true, maxSave: 600})

FAQs

Package last updated on 12 Nov 2017

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