linkfs:重写文件系统`fs`路径

时间:2024-03-31 13:17:28
【文件属性】:

文件名称:linkfs:重写文件系统`fs`路径

文件大小:8KB

文件格式:ZIP

更新时间:2024-03-31 13:17:28

系统开源

链接文件 重定向文件系统路径。 npm install --save linkfs import { link } from 'linkfs' ; import { fs } from 'memfs' ; fs . writeFileSync ( '/foo' , 'bar' ) ; const lfs = link ( fs , [ '/foo2' , '/foo' ] ) ; console . log ( lfs . readFileSync ( '/foo2' , 'utf8' ) ) ; // bar 参考 link(fs, rewrites) 返回带有重定向文件路径的类似fs的新对象。 fs是类似fs的源对象。 rewrites是一个2元组或2元组的数组,其中每个2元组具有[from, to] 。 from新的虚拟路径; 和to是fs文件系统中的现有路径。 const


【文件预览】:
linkfs-master
----src()
--------index.ts(4KB)
--------__tests__()
----.babelrc(97B)
----.npmignore(151B)
----demo()
--------example.ts(215B)
--------multiple-rewrites.ts(452B)
----.travis.yml(332B)
----gulpfile.js(374B)
----tsconfig.json(487B)
----LICENSE(1KB)
----README.md(1KB)
----renovate.json(202B)
----.gitignore(85B)
----package.json(2KB)
----.nvmrc(7B)

网友评论