/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
server/node_modules/tar-stream/sandbox.js
11 строк
371 B
1lostsun
update project
25 май 2025, 13:12
25 май 2025, 13:12
78a0079
Код
Авторство
О чём код?
const tar = require('tar-stream') const fs = require('fs') const path = require('path') const pipeline = require('pump') // eequire('stream').pipeline fs.createReadStream('test.tar') .pipe(tar.extract()) .on('entry', function (header, stream, done) { console.log(header.name) pipeline(stream, fs.createWriteStream(path.join('/tmp', header.name)), done) })