![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
external-editor
Advanced tools
Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT
The external-editor npm package allows you to easily invoke and manage external text editors from within your Node.js applications. It is particularly useful when you need to allow users to edit large multi-line texts, which can be cumbersome to handle within a command-line interface. The package takes care of launching the editor, capturing the text once the editor is closed, and handling temporary files.
Launch an external editor and get the edited text
This feature launches the default system editor, waits for the user to make changes and save, and then returns the edited text.
const { edit } = require('external-editor');
const text = edit();
console.log(text);
Launch an external editor with predefined text
This feature allows you to launch an external editor with predefined text, which the user can then edit.
const { edit } = require('external-editor');
const initialText = 'Initial content of the file.';
const text = edit(initialText);
console.log(text);
Create an instance of ExternalEditor
This feature provides more control by creating an instance of ExternalEditor, which can be used to run the editor and clean up temporary files manually.
const { ExternalEditor } = require('external-editor');
const editor = new ExternalEditor();
const text = editor.run();
editor.cleanup();
console.log(text);
Inquirer is a comprehensive library for creating interactive command-line interfaces. While it does not directly provide functionality to launch external editors, it offers a wide range of input types, including an 'editor' input type that allows users to input multi-line text using an embedded editor.
The 'open' package is used to open files or URLs in the user's preferred application. While it is not specifically designed for text editing, it can be used to open text files in the default editor. However, it does not manage the editing process or handle temporary files like external-editor does.
Enquirer is another library for creating stylish command-line interfaces with various prompts. Similar to Inquirer, it includes a prompt type for editing text, but it does not specifically focus on launching external editors or managing temporary files.
A node module to edit a string with a users preferred text editor using $VISUAL or $ENVIRONMENT.
Version: 3.1.0
As of version 3.0.0, the minimum version of node supported is 4.
npm install external-editor --save
A simple example using the .edit
convenience method
import {edit} from "external-editor";
const data = edit('\n\n# Please write your text above');
console.log(data);
A full featured example
import {ExternalEditor, CreateFileError, ReadFileError, RemoveFileError} from "external-editor"
try {
const editor = new ExternalEditor();
const text = editor.run() // the text is also available in editor.text
if (editor.last_exit_status !== 0) {
console.log("The editor exited with a non-zero code");
}
} catch (err) {
if (err instanceOf CreateFileError) {
console.log('Failed to create the temporary file');
} else if (err instanceOf ReadFileError) {
console.log('Failed to read the temporary file');
} else if (err instanceOf LaunchEditorError) {
console.log('Failed to launch your editor');
} else {
throw err;
}
}
// Do things with the text
// Eventually call the cleanup to remove the temporary file
try {
editor.cleanup();
} catch (err) {
if (err instanceOf RemoveFileError) {
console.log('Failed to remove the temporary file');
} else {
throw err
}
}
Convenience Methods
edit(text, config)
text
(string) Optional Defaults to empty stringconfig
(Config) Optional Options for temporary file creationCreateFileError
, ReadFileError
, or LaunchEditorError
, or RemoveFileError
editAsync(text, callback, config)
text
(string) Optional Defaults to empty stringcallback
(function (error, text))
error
could be of type CreateFileError
, ReadFileError
, or LaunchEditorError
, or RemoveFileError
text
(string) The contents of the fileconfig
(Config) Optional Options for temporary file creationErrors
CreateFileError
Error thrown if the temporary file could not be created.ReadFileError
Error thrown if the temporary file could not be read.RemoveFileError
Error thrown if the temporary file could not be removed during cleanup.LaunchEditorError
Error thrown if the editor could not be launched.External Editor Public Methods
new ExternalEditor(text, config)
text
(string) Optional Defaults to empty stringconfig
(Config) Optional Options for temporary file creationCreateFileError
run()
Launches the editor.
LaunchEditorError
or ReadFileError
runAsync(callback)
Launches the editor in an async way
callback
(function (error, text))
error
could be of type ReadFileError
or LaunchEditorError
text
(string) The contents of the filecleanup()
Removes the temporary file.
RemoveFileError
External Editor Public Properties
text
(string) readonly The text in the temporary file.editor.bin
(string) The editor determined from the environment.editor.args
(array) Default arguments for the bintempFile
(string) Path to temporary file. Can be changed, but be careful as the temporary file probably already
exists and would need be removed manually.lastExitStatus
(number) The last exit code emitted from the editor.Config Options
prefix
(string) Optional A prefix for the file name.postfix
(string; Optional A postfix for the file name. Useful if you want to provide an extension.mode
(number) Optional Which mode to create the file with. e.g. 644template
(string) Optional A template for the filename. See tmp.dir
(string) Optional Which path to store the file.All errors have a simple message explaining what went wrong. They all also have an originalError
property containing
the original error thrown for debugging purposes.
Everything is synchronous to make sure the editor has complete control of the stdin and stdout. Testing has shown async launching of the editor can lead to issues when using readline or other packages which try to read from stdin or write to stdout. Seeing as this will be used in an interactive CLI environment, I made the decision to force the package to be synchronous. If you know a reliable way to force all stdin and stdout to be limited only to the child_process, please submit a PR.
If async is really needed, you can use editAsync
or runAsync
. If you are using readline or have anything else
listening to the stdin or you write to stdout, you will most likely have problem, so make sure to remove any other
listeners on stdin, stdout, or stderr.
ExternalEditor.temp_file
is now ExternalEditor.tempFile
.ExternalEditor.last_exit_status
is now ExternalEditor.lastExitStatus
.Error.original_error
is now Error.originalError
.The MIT License (MIT)
Copyright (c) 2016-2018 Kevin Gravier
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT
The npm package external-editor receives a total of 0 weekly downloads. As such, external-editor popularity was classified as not popular.
We found that external-editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.