一尘不染

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

node.js

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

db.sh文件内部:

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

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

阅读 1141

收藏
2020-07-07

共1个答案

一尘不染

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

 const shell = require('shelljs')

 shell.exec('./path_to_your_file')
2020-07-07