Skip to content

allnulled/execute-command-sync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

execute-command-sync

1. Introduction

This is a module for Node.js that will let you run console commands redirecting the input, output and error streams, directly to the console, and also in synchronous code.

2. Installation

Download the repository from NPM. To do it, type from the command line:

~$ npm install -s execute-command-sync

Import in your code the module:

const executeCommand = require("execute-command-sync");

3. Usage

Start using the command like this:

  executeCommand("ls -lA", {cwd:"/"});
  // You can do things here after the execution has finished
  // The results will be logged in the console

Take into account that the output, the error and the input streams are not catchable. To do this, there are more advanced packages out there, like this one: exec-plan.

4. Conclusion

This module is just a wrapper for this answer at StackOverflow:

Use child_process.execSync but keep output in console

Thanks to the great developers that are on StackOverflow, helping every day to do our life a bit easier. Their wisdom is always an honor.

About

Executes a command synchronously and redirects the output to the console, directly.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published