我需要使用执行一组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)
您可以使用shelljs模块执行任何shell命令
const shell = require('shelljs') shell.exec('./path_to_your_file')