如何使用Node.js运行Shell脚本文件?

我需要使用执行一组Cassandra DB命令的nodeJS运行Shell脚本文件。有人可以帮我吗?

create keyspace dummy with   replication = {'class':'SimpleStrategy','replication_factor':3}

create table dummy (userhandle text, email text primary key , name text,profilepic)

回答:

您可以使用shelljs模块执行任何shell命令

 const shell = require('shelljs')

shell.exec('./path_to_your_file')

以上是 如何使用Node.js运行Shell脚本文件? 的全部内容, 来源链接: utcz.com/qa/433050.html

回到顶部