UNPKG
@forabi/memfs
Version:
latest (2.7.2)
2.7.2
In-memory file-system with Node's fs API.
github.com/streamich/memfs
streamich/memfs
@forabi/memfs
/
demo
/
readFileSync.ts
6 lines
(3 loc)
•
129 B
text/typescript
View Raw
1
2
3
4
5
6
import
{fs}
from
'../src/index'
; fs.
writeFileSync
(
'/test.txt'
,
'hello...'
);
console
.
log
(fs.
readFileSync
(
'/test.txt'
,
'utf8'
));