NodeJS: Difference between revisions

225 bytes added ,  7 October 2019
Line 65: Line 65:
[https://csv.js.org/parse/api/ Reference]
[https://csv.js.org/parse/api/ Reference]
<syntaxhighlight>
<syntaxhighlight>
</syntaxhighlight>
==Running other processes==
You can invoke other processes or CLI programs using <code>spawn</code> or <code>spawnSync</code>
<syntaxhighlight lang="javascript">
const {spawn} = require('child_process');
</syntaxhighlight>
</syntaxhighlight>