admin管理员组文章数量:1316588
I'm a plete noob at programming but yeah. Like the title said, I don't know how to run an app.js in node (/). Installing npm install async
and npm install spotify-node-applescript
was easy but I don't know how to run the app.js file. If I try to run it in the node.js mand prompt it gives me this error when I use node.exe it just keeps loading. Can someone help me?
Line 1. Char 1. Object expected. Error 800A138F
Thanks!
I'm a plete noob at programming but yeah. Like the title said, I don't know how to run an app.js in node (https://github./paterson/SpotifyHack/). Installing npm install async
and npm install spotify-node-applescript
was easy but I don't know how to run the app.js file. If I try to run it in the node.js mand prompt it gives me this error when I use node.exe it just keeps loading. Can someone help me?
Line 1. Char 1. Object expected. Error 800A138F
Thanks!
Share Improve this question edited Oct 1, 2013 at 17:07 Juan Cortés 21.1k8 gold badges69 silver badges91 bronze badges asked Oct 1, 2013 at 17:05 Tom046Tom046 331 silver badge4 bronze badges2 Answers
Reset to default 6It looks like you're double-clicking app.js on Windows, which by default will launch the file with Windows Script Host, which is Microsoft's JavaScript runtime. It throws an error because it is very unlike node (specifically, WSH doesn't have a require
).
With node (once it is installed), you have to open a mand prompt and run it there.
C:\SomeNodeApp> node app.js
Your next problem is that the project you're trying to run (SpotifyHack) uses AppleScript, which is specific to Mac OS. You won't be able to use this project on Windows.
From your CLI (Command Line Interface), try node app
when you're in the directory with app.js.
本文标签: javascriptDon39t know how to run appjs in nodeStack Overflow
版权声明:本文标题:javascript - Don't know how to run app.js in node - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741964735a2407480.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论