文件名称:moonwalk:一个简单的事件驱动的 Node 目录树walker
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-23 01:54:39
JavaScript
月球漫步 一个简单的事件驱动的目录树walker。 用法示例: // This program walks all files and directories under /home/sixpounder var Moonwalker = require ( 'moonwalk' ) ; var m = new Moonwalker ( "/home/sixpounder" ) ; m . on ( "file" , function ( path ) { console . log ( "Found file: " + path ) ; } ) ; m . on ( "directory" , function ( path ) { console . log ( "Found directory: " + path ) ; } ) ; m . on ( "end"
【文件预览】:
moonwalk-master
----lib()
--------moonwalk.js(2KB)
----test.js(26B)
----test()
--------index.js(370B)
----README.md(498B)
----.gitignore(13B)
----index.js(43B)
----package.json(561B)