如何在Meteor中使用spawn child_process

时间:2016-05-24 16:23:28

标签: angularjs meteor npm angular-meteor

我正在创建一个Meteor Angular应用程序。

我想导入Node,这样的子进程:

var spawn = Npm.require('child_process').spawn;

当我尝试这个时,Meteor回应说没有定义Npm。我知道这是使用npm包的旧方法。目前的使用方法是什么?

我认为我需要使用导入,但不知道以什么形式这样做

我尝试import spawn from 'child_process'无效。

1 个答案:

答案 0 :(得分:1)

对我来说这是有效的(server / main.js)

import {spawn} from 'child_process';
console.log(spawn); // I20160524-22:04:42.927(2)? [Function]

你的输出是什么? 这应该工作

import childProcess from 'child_process';
console.log(childProcess.spawn)