我試圖創建一個節點命令行應用程序。 我正在做的是從充滿信息的文檔中提取電子郵件。Nodejs命令行應用程序:意外的令牌`else'
但是,當我已經運行命令npm link
使腳本全局可用,我得到這些錯誤:
/c/Users/petfle/AppData/Roaming/npm/email-extract: line 11: syntax error near unexpected token `else'
/c/Users/petfle/AppData/Roaming/npm/email-extract: line 11: `else '
我的代碼通過掉毛,我看不到任何錯誤回報。我是新來的節點,所以它可能是簡單的,節點特定的東西,我沒有看到。
這裏是我的代碼:
#!/c/Program\ Files/nodejs/node
var file_stream = require('fs');
var source = process.argv[2];
var output = process.argv[3];
file_stream.readFile(source, 'utf8', function (error, data) {
var list_of_emails = extract_emails(data);
write_to_file(list_of_emails);
});
function extract_emails(data) {
return data.match(/([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)/g);
}
function write_to_file(emails) {
file_stream.writeFile(output, emails.join('\n'), 'utf8', function (error) {
console.log('Wrote ' + emails.length + ' lines to ' + output);
});
}
編輯: 如果我刪除了家當,並與node myscript.js file.txt file2.txt
運行它的工作原理。我在窗戶上。編輯2: 我在Git Bash中運行這個。即使在Windows上,它也可以在shebang上運行更簡單的腳本。
您是否嘗試刪除[shebang](http://en.wikipedia.org/wiki/Shebang_(Unix))? –
然後我無法將它作爲命令行應用程序運行。我需要指定腳本解釋器。 – ptf