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
/
createReadStream.ts
8 lines
(6 loc)
•
206 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{vol}
from
'../src/index'
; vol.
writeFileSync
(
'/readme'
,
'# Hello World'
);
const
rs = vol.
createReadStream
(
'/readme'
,
'utf8'
); rs.
on
(
'data'
,
(
data
) =>
{
console
.
log
(
'data'
, data.
toString
()); });