nuxtjs start from file code example
Example 1: node load string from file
var fs = require('fs');
fs.readFile('my-file.txt', 'utf8', function(err, data) {
if (err) throw err;
console.log(data);
});
Example 2: how to start an exe file in python
import sys, string, os, arcgisscripting
os.system("C:/Documents and Settings/flow_model/flow.exe")
Example 3: install nuxt
$ npx create-nuxt-app <project-name>