문제

according to this answer

the dart:io libraries are only for the server/command-line, so they can't be compiled with dart2js.

is it possible to read from stdin and write to stdout with dart2js e.g:

$ java -jar ../../Downloads/rhino1_7R4/js.jar myjs.js < in.txt > out.txt

I'm considering editing the dart2js generated file and adding something like:

importPackage(java.io);
importPackage(java.lang);
scan = new BufferedReader( new InputStreamReader(System['in']) );
도움이 되었습니까?

해결책

dart2js is for running in the browser.
dart:io will not convert to JS because the browser doesn't support this functionality (like stdout/stdin).

Do you want to run JS generated from Dart running on the Server using Rhino? Maybe you could integrate the Dart VM in your app and run Dart code without transpiling to JS.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top