# call cmd # chid_process.exec 1234567891011121314var exec = require('child_process').execvar cmdStr = 'curl http://www.weather.com.cn/data/sk/101010100.html'exec(cmdStr, function(err, stdout, stderr) { if (err) { console.log('get...

王者荣耀【原创内容大赛皮肤设计比赛】获奖作品 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364const https = require('https')const iconv = require('iconv-lite')const fs = require('fs')const uuidv4 =...

# random story 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263// rss_feeds.txt// http://lambda-the-ultimate.org/rss.xml// http://lambda-the-ultimate.org/rss.xmlvar fs = require('fs')var request =...

# Need test func src/fn.js 1234module.exports = { num1: n => parseInt(n), num2: n => Number(n)} src/math.js 123456789101112131415161718192021222324function sumOne(a, b) { const c = 1 return a + b + c}module.exports = { add: (...args)...

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778var http = require('http')var fs = require('fs')var path = require('path')var mime =...