UNPKG

621 BJavaScriptView Raw
1const fs = require('fs');
2const path = require('path');
3const walk = require('walk');
4const config = require('./config');
5
6const walker = walk.walk(config.root);
7walker.on('file', function (root, fileStats, next) {
8 const basename = fileStats.name;
9 const ext = path.extname(basename);
10
11 const file = path.resolve(__dirname, root + '/' + basename);
12 // console.log(file);
13 if (ext === '.md') {
14 const txt = fs.readFileSync(file, 'utf-8');
15 console.log(txt);
16 }
17
18 next();
19});
20
21
22walker.on('end', () => {
23
24 // console.log('end');
25});
26
27walker.on('error', (e) => {
28 console.log(e);
29})
\No newline at end of file