readdirp:具有流式API的fs.readdir的递归版本

时间:2024-05-31 20:16:24
【文件属性】:

文件名称:readdirp:具有流式API的fs.readdir的递归版本

文件大小:16KB

文件格式:ZIP

更新时间:2024-05-31 20:16:24

JavaScript

读目录 递归版本。 公开一个流API和一个Promise API 。 npm install readdirp const readdirp = require ( 'readdirp' ) ; // Use streams to achieve small RAM & CPU footprint. // 1) Streams example with for-await. for await ( const entry of readdirp ( '.' ) ) { const { path } = entry ; console . log ( ` ${ JSON . stringify ( { path } ) } ` ) ; } // 2) Streams example, non for-await. // Print out all JS files along w


【文件预览】:
readdirp-master
----.gitignore(141B)
----package.json(2KB)
----.npmrc(19B)
----LICENSE(1KB)
----index.js(9KB)
----tsconfig.json(326B)
----test.js(14KB)
----.github()
--------workflows()
--------dependabot.yml(348B)
----examples()
--------list.js(733B)
--------grep.js(1KB)
--------bench.js(731B)
--------types.ts(578B)
----README.md(7KB)
----index.d.ts(1018B)

网友评论