Socket
Socket
Sign inDemoInstall

repl-history

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    repl-history

A custom history for your custom REPL


Version published
Weekly downloads
26
decreased by-56.67%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Last updated on 12 Nov 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc