Node-Red configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

wc-async 178B

12345678
  1. #!/usr/bin/env node
  2. var rw = require("../").dash;
  3. rw.readFile(process.argv[2] || "-", function(error, contents) {
  4. if (error) throw error;
  5. console.log(contents.length);
  6. });