UNPKG

learnyounode

Version:

Learn You The Node.js For Much Win! An intro to Node.js via a set of self-guided workshops.

9 lines (7 loc) 339 B
var fs = require('fs') var contents = fs.readFileSync(process.argv[2]) var lines = contents.toString().split('\n').length - 1 console.log(lines) // メモ:'utf8''readFileSync'に二つ目の関数として渡すと'.toString'なくて // も動いていますよ! // fs.readFileSync(process.argv[2], 'utf8').split('\n').length - 1